Transfer von GitLab

This commit is contained in:
Florian Otto
2026-04-13 23:59:49 +02:00
parent 8f3f5fd1cf
commit c4651e518d
33 changed files with 1504 additions and 1 deletions
+43
View File
@@ -0,0 +1,43 @@
<!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>