2024-08-12 18:23:42 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>AAII</title>
|
2024-08-14 07:12:09 +02:00
|
|
|
<link rel="stylesheet" href="main.css">
|
2024-08-12 18:23:42 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2024-08-13 11:13:14 +02:00
|
|
|
<div class="container bg-white rounded-lg shadow-md flex flex-col">
|
2024-08-13 18:58:27 +02:00
|
|
|
<h1 class="flex-none text-3xl font-bold mb-4 text-center">AAII
|
|
|
|
<div class="typing-indicator" id="typingIndicator"></div>
|
|
|
|
</h1>
|
2024-08-13 11:13:14 +02:00
|
|
|
<div class="chat break-all" id="chatContainer">
|
2024-08-12 18:23:42 +02:00
|
|
|
</div>
|
2024-08-13 11:13:14 +02:00
|
|
|
<div class="flex-none flex">
|
2024-08-13 11:48:17 +02:00
|
|
|
<textarea type="text" id="userInput" placeholder="Type message here" class="outline-none flex-auto"></textarea>
|
2024-08-13 11:13:14 +02:00
|
|
|
<button class="send-button flex-none" id="sendButton" >Send</button>
|
2024-08-12 18:23:42 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="module" src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|