Files
Assistent/templates/agb.html
SimolZimol 6f2f4f3b42 modified: templates/agb.html
modified:   templates/datenschutz.html
	modified:   templates/impressum.html
	modified:   templates/kontakt.html
2025-06-19 19:23:07 +02:00

75 lines
3.2 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>Nutzungsbedingungen (AGB) 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; }
.footer { color: #6c7380; font-size: 0.95em; margin-top: 40px; text-align: center; }
.nav {
display: flex;
justify-content: center;
gap: 18px;
background: #181a20;
padding: 14px 0 10px 0;
border-radius: 12px 12px 0 0;
margin: -40px -32px 32px -32px;
box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.nav a {
color: #b0b6c3;
text-decoration: none;
padding: 8px 18px;
border-radius: 6px;
font-size: 1.08em;
font-weight: 500;
transition: background 0.2s, color 0.2s;
}
.nav a.active,
.nav a:hover {
background: #00aaff;
color: #fff;
font-weight: bold;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="nav">
<a href="/" {% if request.path == '/' %}class="active"{% endif %}>Start</a>
<a href="/chat" {% if request.path == '/chat' %}class="active"{% endif %}>Chat</a>
<a href="/kontakt" {% if request.path == '/kontakt' %}class="active"{% endif %}>Kontakt</a>
<a href="/impressum" {% if request.path == '/impressum' %}class="active"{% endif %}>Impressum</a>
<a href="/datenschutz" {% if request.path == '/datenschutz' %}class="active"{% endif %}>Datenschutz</a>
<a href="/agb" {% if request.path == '/agb' %}class="active"{% endif %}>AGB</a>
</div>
<h1>Nutzungsbedingungen (AGB)</h1>
<p>
<b>1. Geltungsbereich</b><br>
Diese Anwendung ist eine technische Demo und ausschließlich für Mitarbeiter der Nicolaisen Casing & Packaging GmbH bestimmt. Die Nutzung durch Dritte ist untersagt.
</p>
<p>
<b>2. Zweck</b><br>
Das System dient ausschließlich zu Test- und Evaluierungszwecken im Rahmen der internen Vertriebs- und Außendienstprozesse.
</p>
<p>
<b>3. Datenschutz</b><br>
Es gelten die Hinweise der <a href="/datenschutz" style="color:#00aaff;">Datenschutzerklärung</a>.
</p>
<p>
<b>4. Haftung</b><br>
Die bereitgestellten Informationen und KI-Antworten dienen ausschließlich der internen Orientierung im Rahmen der Demo. Eine Haftung für Fehler oder Auslassungen wird ausgeschlossen.
</p>
<p>
<b>5. Änderungen</b><br>
Simon Giehl behält sich vor, diese Bedingungen jederzeit zu ändern.
</p>
<div class="footer">
&copy; 2025 Simon Giehl Tech Demo für Nicolaisen Casing & Packaging GmbH.
</div>
</div>
</body>
</html>