AAII/static/index.html
2024-08-13 17:13:14 +08:00

28 lines
919 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 flex flex-col">
<h1 class="flex-none text-3xl font-bold mb-4 text-center">AAII</h1>
<div class="chat break-all" id="chatContainer">
</div>
<div class="flex-none flex">
<textarea type="text" id="userInput" placeholder="Type your message here..." class="outline-none flex-auto"></textarea>
<button class="send-button flex-none" id="sendButton" >Send</button>
</div>
<div class="typing-indicator" id="typingIndicator">
</div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>