28 lines
855 B
HTML
28 lines
855 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AAII</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet" />
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container bg-white rounded-lg shadow-md">
|
|
<h1 class="text-3xl font-bold mb-4 text-center">AAII</h1>
|
|
<div class="chat" id="chatContainer">
|
|
</div>
|
|
<div class="flex">
|
|
<textarea type="text" id="userInput" placeholder="Type your message here..." class="outline-none"></textarea>
|
|
<button class="send-button" id="sendButton" >Send</button>
|
|
</div>
|
|
<div class="typing-indicator" id="typingIndicator">
|
|
</div>
|
|
</div>
|
|
|
|
<script type="module" src="script.js"></script>
|
|
</body>
|
|
|
|
</html>
|