Frajosgro commited on
Commit
216820e
·
verified ·
1 Parent(s): ae5ad81

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +28 -0
templates/index.html ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="de">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Dr. Franz Schwanz – Psycho Chatbot</title>
7
+ <link href="/static/styles.css" rel="stylesheet">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ </head>
11
+ <body>
12
+ <div class="container mx-auto max-w-3xl p-4">
13
+ <header class="text-center mb-6">
14
+ <h1 class="title-font text-3xl font-bold">Dr. Franz Schwanz – Psycho Chatbot</h1>
15
+ <p class="text-gray-600">Dein persönlicher psychoanalytischer Gesprächspartner</p>
16
+ </header>
17
+
18
+ <div id="chat" class="chat-container bg-white p-4 rounded-lg shadow-md"></div>
19
+
20
+ <div class="flex mt-4">
21
+ <textarea id="input" class="flex-grow border p-2 rounded-l-lg" rows="2" placeholder="Schreibe hier..."></textarea>
22
+ <button id="send" class="bg-indigo-600 text-white px-4 rounded-r-lg">Senden</button>
23
+ </div>
24
+ </div>
25
+
26
+ <script src="/static/script.js"></script>
27
+ </body>
28
+ </html>