Files
cookiekop-plugin/popup.html
T
2026-04-15 14:30:36 +02:00

43 lines
1.2 KiB
HTML
Raw 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>Meldung erstellen CookieKop</title>
<script src="libs/jspdf.umd.min.js"></script>
<script src="util/constants.js"></script>
<script src="util/storage.js"></script>
<script src="popup.js" defer></script> <!-- WICHTIG: defer! -->
<link rel="stylesheet" href="styles/popup.css">
</head>
<body>
<header>
<h1 id="project-name"></h1>
</header>
<section>
<label>Aktuelle URL:</label>
<input type="text" id="current-url" readonly>
<label>Verstoß auswählen:</label>
<div id="violations"></div>
<label>Zusätzliche Hinweise:</label>
<textarea id="custom-note" rows="3" placeholder="Optionale Ergänzungen"></textarea>
<div class="actions">
<button id="screenshot-btn">Screenshot erstellen</button>
<!-- PDF-Button ausgegraut und Hinweis eingebaut -->
<button id="create-pdf-btn" disabled title="PDF-Funktion wird bald verfügbar sein.">PDF erstellen (geplant)</button>
<button id="create-email-btn">E-Mail vorbereiten</button>
<button id="open-options-btn">Einstellungen öffnen</button>
</div>
</section>
<footer>
<small id="project-banner"></small>
</footer>
</body>
</html>