File size: 1,106 Bytes
216820e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Dr. Franz Schwanz – Psycho Chatbot</title>
  <link href="/static/styles.css" rel="stylesheet">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  <script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
  <div class="container mx-auto max-w-3xl p-4">
    <header class="text-center mb-6">
      <h1 class="title-font text-3xl font-bold">Dr. Franz Schwanz – Psycho Chatbot</h1>
      <p class="text-gray-600">Dein persönlicher psychoanalytischer Gesprächspartner</p>
    </header>

    <div id="chat" class="chat-container bg-white p-4 rounded-lg shadow-md"></div>

    <div class="flex mt-4">
      <textarea id="input" class="flex-grow border p-2 rounded-l-lg" rows="2" placeholder="Schreibe hier..."></textarea>
      <button id="send" class="bg-indigo-600 text-white px-4 rounded-r-lg">Senden</button>
    </div>
  </div>

  <script src="/static/script.js"></script>
</body>
</html>