29 lines
862 B
HTML
29 lines
862 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body { width: 220px; padding: 10px; font-family: sans-serif; font-size: 14px; }
|
|
h3 { margin: 0 0 8px; }
|
|
label { display: block; padding: 4px 0; cursor: pointer; }
|
|
.error { color: red; font-size: 12px; }
|
|
.section { margin-top: 12px; padding-top: 10px; border-top: 1px solid #ddd; }
|
|
.status { font-size: 12px; color: #555; margin-bottom: 6px; }
|
|
.status.ok { color: #2a7; }
|
|
.status.fail { color: #c33; }
|
|
button { width: 100%; padding: 6px; font-size: 13px; cursor: pointer; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3>Profil</h3>
|
|
<div id="profiles"></div>
|
|
|
|
<div class="section">
|
|
<h3>Cookie-Sync</h3>
|
|
<div id="cookieStatus" class="status">noch nicht synchronisiert</div>
|
|
<button id="syncBtn">Jetzt synchronisieren</button>
|
|
</div>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|