Spaces:
Sleeping
Sleeping
File size: 840 Bytes
e227a15 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Customer Service Chatbot</title>
<link rel="stylesheet" href="../static/css/style.css">
</head>
<body>
<div class="chat-container">
<h2>AI Customer Service Chatbot</h2>
<div id="chat-box"></div>
<form id="chat-form" autocomplete="off">
<input type="text" id="user-input" placeholder="Type your message..." maxlength="500" required />
<button type="submit">Send</button>
</form>
<div id="loading" style="display:none;">Thinking...</div>
</div>
<script src="../static/js/script.js"></script>
</body>
</html>
<!DOCTYPE html>
|