prasanth345 commited on
Commit
3c80d6f
·
verified ·
1 Parent(s): 49d8df7

Create index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +24 -0
templates/index.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
7
+ <title>Hotel Booking Demo</title>
8
+ </head>
9
+ <body>
10
+ <header>
11
+ <h1>Hotel Booking Demo</h1>
12
+ <p>Talk to our virtual assistant for hotel bookings</p>
13
+ </header>
14
+ <main>
15
+ <button id="voice-chat">Start Voice Chat</button>
16
+ <div id="chat-container">
17
+ <div id="chat-history"></div>
18
+ <input type="text" id="user-input" placeholder="Type your message...">
19
+ <button id="send-button">Send</button>
20
+ </div>
21
+ </main>
22
+ <script src="{{ url_for('static', filename='script.js') }}"></script>
23
+ </body>
24
+ </html>