prasanth345's picture
Rename templates/chatbot.html to templates/chat.html
3f23a97 verified
raw
history blame
819 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
<title>Hotel Booking Chat</title>
</head>
<body>
<header>
<h1>Chat with Our Virtual Assistant</h1>
<p>Get help with hotel bookings through voice or text</p>
</header>
<main>
<div id="chat-container">
<div id="chat-history"></div>
<input type="text" id="user-input" placeholder="Type your message...">
<button id="send-button">Send</button>
<button id="voice-chat">Start Voice Chat</button>
</div>
</main>
<script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>