30 lines
646 B
HTML
30 lines
646 B
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Statistik – CookieKop</title>
|
||
<script src="util/constants.js"></script>
|
||
<script src="statistics.js" defer></script>
|
||
<link rel="stylesheet" href="styles/statistics.css">
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<h1>Deine Statistik</h1>
|
||
</header>
|
||
|
||
<section>
|
||
<div id="stats">
|
||
<p>Gesendete Meldungen: <span id="report-count">0</span></p>
|
||
</div>
|
||
|
||
<div id="share-option">
|
||
<button id="share-stats-btn">Statistik anonym teilen</button>
|
||
</div>
|
||
</section>
|
||
|
||
<footer>
|
||
<small>CookieKop – Datenschutzfreundlich</small>
|
||
</footer>
|
||
</body>
|
||
</html>
|