DrBot / templates /index.html
Frajosgro's picture
Create templates/index.html
216820e verified
<!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>