Spaces:
No application file
No application file
Create templates/index.html
Browse files- (static/templates/index.html +22 -0
(static/templates/index.html
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="de">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Dr. Franz Schwanz</title>
|
6 |
+
<link href="/static/styles.css" rel="stylesheet">
|
7 |
+
<script src="/static/script.js" defer></script>
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div class="container">
|
11 |
+
<h1>Dr. Franz Schwanz 🛋️</h1>
|
12 |
+
<div id="chat"></div>
|
13 |
+
<textarea id="input" placeholder="Was quält Sie heute?"></textarea>
|
14 |
+
<button id="send">Senden</button>
|
15 |
+
</div>
|
16 |
+
|
17 |
+
<!-- Ethik-Hinweis -->
|
18 |
+
<div class="disclaimer">
|
19 |
+
<p>⚠️ Experimenteller Chatbot. Nicht für echte Therapie nutzen.</p>
|
20 |
+
</div>
|
21 |
+
</body>
|
22 |
+
</html>
|