Files
Assistent/templates/kontakt.html
SimolZimol c56f3f8648 modified: app.py
new file:   templates/agb.html
	modified:   templates/chat.html
	modified:   templates/datenschutz.html
	modified:   templates/impressum.html
	modified:   templates/kontakt.html
	modified:   templates/landing.html
2025-06-19 19:09:58 +02:00

39 lines
1.9 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>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>
<p>
Diese Anwendung ist eine technische Demo für Nicolaisen Casing & Packaging GmbH.<br>
Bei Fragen zur Demo wenden Sie sich bitte an:
</p>
<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">
&copy; 2025 Simon Giehl Tech Demo für Nicolaisen Casing & Packaging GmbH.
</div>
</div>
</body>
</html>