prasanth345's picture
Create index.html
3c80d6f verified
raw
history blame
800 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 Demo</title>
</head>
<body>
<header>
<h1>Hotel Booking Demo</h1>
<p>Talk to our virtual assistant for hotel bookings</p>
</header>
<main>
<button id="voice-chat">Start Voice Chat</button>
<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>
</div>
</main>
<script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>