Files
ChooserApp/impressum.html

73 lines
3.4 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">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Impressum Finger Chooser</title>
<meta name="robots" content="noindex,follow">
<style>
*{box-sizing:border-box;margin:0;padding:0}
html,body{min-height:100%;background:#0c0c14;color:#e2e8f0;font-family:system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;line-height:1.6}
body{padding:40px 16px 60px}
.wrap{max-width:640px;margin:0 auto}
.back{display:inline-flex;align-items:center;gap:6px;color:rgba(255,255,255,0.4);font-size:14px;text-decoration:none;margin-bottom:32px;transition:color 150ms}
.back:hover{color:rgba(255,255,255,0.75)}
h1{font-size:28px;font-weight:800;letter-spacing:-0.5px;background:linear-gradient(135deg,#c084fc,#818cf8,#34d399);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:8px}
.subtitle{font-size:13px;color:rgba(255,255,255,0.35);margin-bottom:40px}
.card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:16px;padding:28px;margin-bottom:20px}
h2{font-size:14px;font-weight:600;color:rgba(255,255,255,0.5);text-transform:uppercase;letter-spacing:0.8px;margin-bottom:14px}
p,address{font-size:15px;color:rgba(255,255,255,0.75);font-style:normal;line-height:1.7}
a{color:#818cf8;text-decoration:none}
a:hover{text-decoration:underline}
.placeholder{background:rgba(255,100,100,0.12);border:1px dashed rgba(255,100,100,0.3);border-radius:6px;padding:2px 8px;font-size:13px;color:#fca5a5;font-style:italic}
.notice{background:rgba(245,158,11,0.08);border:1px solid rgba(245,158,11,0.2);border-radius:12px;padding:16px 20px;margin-bottom:32px;font-size:13px;color:rgba(255,255,255,0.6);line-height:1.6}
.notice strong{color:#fbbf24}
</style>
</head>
<body>
<div class="wrap">
<a class="back" href="/">← Zurück zur App</a>
<h1>Impressum</h1>
<p class="subtitle">Angaben gemäß § 5 TMG</p>
<div class="notice">
<strong>Hinweis:</strong> Bitte ersetze alle rot markierten Platzhalter mit deinen echten Angaben, bevor du die Seite veröffentlichst.
</div>
<div class="card">
<h2>Verantwortlich</h2>
<address>
<span class="placeholder">[Vorname Nachname]</span><br>
<span class="placeholder">[Straße Hausnummer]</span><br>
<span class="placeholder">[PLZ Ort]</span><br>
<span class="placeholder">[Land]</span>
</address>
</div>
<div class="card">
<h2>Kontakt</h2>
<p>
E-Mail: <a href="mailto:kontakt@beispiel.de"><span class="placeholder">[E-Mail-Adresse]</span></a><br>
Telefon: <span class="placeholder">[+49 xxx xxxxxxx]</span> <em style="font-size:13px;color:rgba(255,255,255,0.35)">(optional)</em>
</p>
</div>
<div class="card">
<h2>Inhaltlich Verantwortlicher</h2>
<p>
Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV:<br>
<span class="placeholder">[Vorname Nachname, Adresse wie oben]</span>
</p>
</div>
<div class="card">
<h2>Haftungsausschluss</h2>
<p>
Die Inhalte dieser Website wurden mit größter Sorgfalt erstellt. Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte kann keine Gewähr übernommen werden.
</p>
</div>
</div>
</body>
</html>