Files
2026-04-15 14:30:36 +02:00

53 lines
2.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Einstellungen CookieKop</title>
<script src="util/constants.js"></script>
<script src="options.js" defer></script>
<link rel="stylesheet" href="styles/options.css">
</head>
<body>
<header>
<h1>Einstellungen</h1>
</header>
<section>
<label for="state-selector">Bundesland auswählen:</label>
<select id="state-selector">
<option value="">-- Bitte auswählen --</option>
<option value="Baden-Württemberg">Baden-Württemberg</option>
<option value="Bayern">Bayern</option>
<option value="Berlin">Berlin</option>
<option value="Brandenburg">Brandenburg</option>
<option value="Bremen">Bremen</option>
<option value="Hamburg">Hamburg</option>
<option value="Hessen">Hessen</option>
<option value="Mecklenburg-Vorpommern">Mecklenburg-Vorpommern</option>
<option value="Niedersachsen">Niedersachsen</option>
<option value="Nordrhein-Westfalen">Nordrhein-Westfalen</option>
<option value="Rheinland-Pfalz">Rheinland-Pfalz</option>
<option value="Saarland">Saarland</option>
<option value="Sachsen">Sachsen</option>
<option value="Sachsen-Anhalt">Sachsen-Anhalt</option>
<option value="Schleswig-Holstein">Schleswig-Holstein</option>
<option value="Thüringen">Thüringen</option>
<option value="Bund">Bund</option>
</select>
<!--<label for="pdf-path">Standard-Pfad für PDF-Dateien:</label>
<input type="text" id="pdf-path" placeholder="cookiekop/pdfs/">
<label for="screenshot-path">Standard-Pfad für Screenshots:</label>
<input type="text" id="screenshot-path" placeholder="cookiekop/screenshots/">
-->
<label><input type="checkbox" id="show-banner"> Projektbanner in E-Mail/PDF anzeigen</label>
<!-- Auszug nur für Statistikbereich -->
<label><input type="checkbox" id="share-stats" disabled> Anonymisierte Statistik teilen (geplant)</label>
<small>Diese Funktion wird in einer zukünftigen Version verfügbar sein.</small>
<button id="save-options">Einstellungen speichern</button>
</section>
</body>
</html>