Files
Assistent/templates/datenschutz.html
SimolZimol d181b69a17 modified: app.py
new file:   templates/datenschutz.html
	new file:   templates/impressum.html
	new file:   templates/kontakt.html
	new file:   templates/landing.html
2025-06-18 14:41:04 +02:00

37 lines
1.6 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>Datenschutz AI Vertriebsassistent</title>
<style>
body { background: #23272f; color: #e3e3e3; font-family: 'Segoe UI', Arial, sans-serif; margin: 0; }
.container { max-width: 700px; margin: 60px auto; background: #181a20; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.18); padding: 40px 32px; }
h1 { color: #00aaff; }
a { color: #00aaff; }
.footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; }
</style>
</head>
<body>
<div class="container">
<h1>Datenschutzerklärung</h1>
<p>
Der Schutz Ihrer persönlichen Daten ist uns wichtig. Ihre Daten werden ausschließlich zur Bereitstellung des AI Vertriebsassistenten verarbeitet und nicht an Dritte weitergegeben.<br>
<br>
Verantwortlicher im Sinne der DSGVO:<br>
Simon Giehl, Mühlenweg 9, 47608 Geldern, Deutschland<br>
E-Mail: simon@projekt-senegal.de
</p>
<p>
<b>Erhebung und Verarbeitung von Daten</b><br>
Es werden nur die Daten verarbeitet, die Sie im Rahmen der Nutzung des KI-Systems eingeben. Es erfolgt keine Weitergabe an Dritte.
</p>
<p>
<b>Ihre Rechte</b><br>
Sie haben das Recht auf Auskunft, Berichtigung und Löschung Ihrer Daten. Kontaktieren Sie uns dazu unter der oben genannten E-Mail-Adresse.
</p>
<div class="footer">
&copy; 2025 Simon Giehl &ndash; AI Vertriebsassistent. Alle Rechte vorbehalten.
</div>
</div>
</body>
</html>