128 lines
4.3 KiB
PHP
128 lines
4.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Privacy Policy</title>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 3rem 1.5rem;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: linear-gradient(135deg, #10111a, #000010);
|
|
color: #e0e0e0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.glass-box {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 1rem;
|
|
padding: 2rem 2.5rem;
|
|
max-width: 720px;
|
|
width: 100%;
|
|
backdrop-filter: blur(12px);
|
|
box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
|
|
}
|
|
|
|
h1 {
|
|
color: #00ffe0;
|
|
font-size: 1.6rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
h2 {
|
|
color: #ff79c6;
|
|
font-size: 1.2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.7;
|
|
margin: 0.8rem 0;
|
|
}
|
|
|
|
a {
|
|
color: #00ffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.footer-note {
|
|
font-size: 0.85rem;
|
|
color: #999;
|
|
text-align: right;
|
|
margin-top: 2rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="glass-box">
|
|
<h1>Datenschutzerklärung</h1>
|
|
|
|
<h2>Verantwortliche Stelle</h2>
|
|
<p>Ludwig Lehnert<br>Zedernstr. 41<br>90441 Nürnberg<br><br>E-Mail: <a
|
|
href="mailto:privacy@lehnert.dev">privacy@lehnert.dev</a></p>
|
|
|
|
<h2>Erhobene Daten</h2>
|
|
<p>Diese Website erhebt keine personenbezogenen Daten über Formulare oder Tracking-Dienste. Es werden keine
|
|
Cookies verwendet und keine Drittanbieter-Analyse-Tools eingebunden.</p>
|
|
|
|
<h2>Server-Hosting</h2>
|
|
<p>Die Website wird auf einem Server der Hetzner Online GmbH (Industriestr. 25, 91710 Gunzenhausen, Deutschland)
|
|
gehostet. Es besteht ein Auftragsverarbeitungsvertrag gemäß Art. 28 DSGVO.</p>
|
|
|
|
<h2>Zugriffsprotokolle</h2>
|
|
<p>Beim Zugriff auf die Website speichert der Webserver automatisch technische Protokolle (sogenannte Logfiles),
|
|
die Ihre IP-Adresse und den Zeitpunkt des Zugriffs enthalten. Diese Daten werden ausschließlich zur
|
|
Fehlererkennung, Sicherheit und statistischen Zwecken verwendet und nach spätestens 90 Tagen automatisch
|
|
gelöscht.</p>
|
|
|
|
<h2>Ihre Rechte</h2>
|
|
<p>Sie haben das Recht auf Auskunft, Berichtigung, Löschung und Einschränkung der Verarbeitung Ihrer
|
|
personenbezogenen Daten sowie ein Widerspruchsrecht gegen die Verarbeitung. Kontaktieren Sie mich gerne per
|
|
E-Mail.</p>
|
|
|
|
<div class="footer-note">Stand: 16. April 2025</div>
|
|
</div>
|
|
|
|
<div class="glass-box">
|
|
<h1>Privacy Policy</h1>
|
|
|
|
<h2>Controller</h2>
|
|
<p>Ludwig Lehnert<br>Zedernstr. 41<br>90441 Nuremberg<br>Germany<br><br>Email: <a
|
|
href="mailto:privacy@lehnert.dev">privacy@lehnert.dev</a></p>
|
|
|
|
<h2>Data Collected</h2>
|
|
<p>This website does not collect personal data via forms, cookies, or third-party tracking tools. No analytics
|
|
services are used.</p>
|
|
|
|
<h2>Server Hosting</h2>
|
|
<p>The site is hosted on infrastructure provided by Hetzner Online GmbH (Industriestr. 25, 91710 Gunzenhausen,
|
|
Germany). A data processing agreement in accordance with Art. 28 GDPR is in place.</p>
|
|
|
|
<h2>Access Logs</h2>
|
|
<p>When visiting the site, the server automatically stores access logs containing your IP address and timestamp.
|
|
These logs are only used for debugging, security, and statistical purposes, and are automatically deleted
|
|
after a maximum of 90 days.</p>
|
|
|
|
<h2>Your Rights</h2>
|
|
<p>You have the right to request information about your data, have it corrected or deleted, or restrict its
|
|
processing. You may also object to certain uses. Feel free to reach out via email.</p>
|
|
|
|
<div class="footer-note">Last updated: April 16, 2025</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |