modified: app.py
new file: templates/datenschutz.html new file: templates/impressum.html new file: templates/kontakt.html new file: templates/landing.html
This commit is contained in:
22
app.py
22
app.py
@@ -44,7 +44,27 @@ def build_system_prompt(context):
|
||||
)
|
||||
|
||||
@app.route("/")
|
||||
def index():
|
||||
def landing():
|
||||
return render_template("landing.html")
|
||||
|
||||
@app.route("/impressum")
|
||||
def impressum():
|
||||
return render_template("impressum.html")
|
||||
|
||||
@app.route("/datenschutz")
|
||||
def datenschutz():
|
||||
return render_template("datenschutz.html")
|
||||
|
||||
@app.route("/kontakt", methods=["GET", "POST"])
|
||||
def kontakt():
|
||||
if request.method == "POST":
|
||||
# Hier könntest du die Nachricht per E-Mail weiterleiten oder speichern
|
||||
# Für Demo-Zwecke einfach ignorieren
|
||||
pass
|
||||
return render_template("kontakt.html")
|
||||
|
||||
@app.route("/chat")
|
||||
def chat():
|
||||
return render_template("chat.html")
|
||||
|
||||
@app.route("/ask", methods=["POST"])
|
||||
|
||||
37
templates/datenschutz.html
Normal file
37
templates/datenschutz.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<!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">
|
||||
© 2025 Simon Giehl – AI Vertriebsassistent. Alle Rechte vorbehalten.
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
36
templates/impressum.html
Normal file
36
templates/impressum.html
Normal file
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Impressum – 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>Impressum</h1>
|
||||
<p>
|
||||
Angaben gemäß § 5 TMG<br>
|
||||
<b>Simon Giehl</b><br>
|
||||
Mühlenweg 9<br>
|
||||
47608 Geldern<br>
|
||||
Deutschland<br>
|
||||
<br>
|
||||
<b>Kontakt:</b><br>
|
||||
E-Mail: simon@projekt-senegal.de<br>
|
||||
</p>
|
||||
<p>
|
||||
Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV:<br>
|
||||
Simon Giehl, Adresse wie oben
|
||||
</p>
|
||||
<div class="footer">
|
||||
© 2025 Simon Giehl – AI Vertriebsassistent. Alle Rechte vorbehalten.
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
35
templates/kontakt.html
Normal file
35
templates/kontakt.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Kontakt – 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; }
|
||||
label { display: block; margin-top: 18px; }
|
||||
input, textarea { width: 100%; padding: 10px; border-radius: 6px; border: 1px solid #353b48; background: #23272f; color: #e3e3e3; margin-top: 6px; }
|
||||
button { background: #00aaff; color: #fff; border: none; border-radius: 8px; padding: 10px 28px; font-size: 1em; margin-top: 18px; cursor: pointer; }
|
||||
button:hover { background: #0078fe; }
|
||||
.footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Kontakt</h1>
|
||||
<form method="post">
|
||||
<label for="name">Ihr Name</label>
|
||||
<input type="text" id="name" name="name" required>
|
||||
<label for="email">Ihre E-Mail</label>
|
||||
<input type="email" id="email" name="email" required>
|
||||
<label for="nachricht">Nachricht</label>
|
||||
<textarea id="nachricht" name="nachricht" rows="5" required></textarea>
|
||||
<button type="submit">Absenden</button>
|
||||
</form>
|
||||
<p style="margin-top:24px;">Oder schreiben Sie direkt an: <a href="mailto:simon@projekt-senegal.de">simon@projekt-senegal.de</a></p>
|
||||
<div class="footer">
|
||||
© 2025 Simon Giehl – AI Vertriebsassistent. Alle Rechte vorbehalten.
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
51
templates/landing.html
Normal file
51
templates/landing.html
Normal file
@@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>AI Vertriebsassistent – Simon Giehl</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; font-size: 2.2em; margin-bottom: 0.2em; }
|
||||
h2 { color: #7fd7ff; }
|
||||
a { color: #00aaff; text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
.nav { margin-bottom: 32px; }
|
||||
.nav a { margin-right: 24px; color: #b0b6c3; }
|
||||
.nav a.active { color: #00aaff; font-weight: bold; }
|
||||
.cta { margin: 32px 0; }
|
||||
.cta a { background: #00aaff; color: #fff; padding: 12px 32px; border-radius: 8px; font-size: 1.1em; text-decoration: none; transition: background 0.2s; }
|
||||
.cta a:hover { background: #0078fe; }
|
||||
.footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="nav">
|
||||
<a href="/" class="active">Start</a>
|
||||
<a href="/chat">Chat</a>
|
||||
<a href="/kontakt">Kontakt</a>
|
||||
<a href="/impressum">Impressum</a>
|
||||
<a href="/datenschutz">Datenschutz</a>
|
||||
</div>
|
||||
<h1>AI Vertriebsassistent</h1>
|
||||
<h2>Ihr smarter KI-Partner für Kunden- und Vertriebsinfos</h2>
|
||||
<p>
|
||||
Willkommen beim AI Vertriebsassistenten von Simon Giehl.<br>
|
||||
Nutzen Sie modernste KI-Technologie, um Ihre Vertriebsprozesse zu optimieren und Kundeninformationen effizient zu verwalten.
|
||||
</p>
|
||||
<div class="cta">
|
||||
<a href="/chat">Jetzt KI-Chat starten</a>
|
||||
</div>
|
||||
<p>
|
||||
<b>Features:</b><br>
|
||||
• Intelligente Auswertung von Excel-Daten<br>
|
||||
• Schnelle Antworten auf Kunden- und Vertriebsfragen<br>
|
||||
• Datenschutzkonform und made in Germany
|
||||
</p>
|
||||
<div class="footer">
|
||||
© 2025 Simon Giehl – AI Vertriebsassistent. Alle Rechte vorbehalten.
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user