ai-chatbot / templates /index.html
jpatel20's picture
Upload 1353 files
e227a15 verified
<!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>