prasanth345 commited on
Commit
d7511f8
·
verified ·
1 Parent(s): 0bbb5b0

Update templates/chatbot.html

Browse files
Files changed (1) hide show
  1. templates/chatbot.html +19 -0
templates/chatbot.html CHANGED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="/static/style.css">
7
+ <title>Hotel Booking Chatbot</title>
8
+ </head>
9
+ <body>
10
+ <div id="chat-container">
11
+ <h1>Hotel Booking Chatbot</h1>
12
+ <div id="chat-window"></div>
13
+ <input type="text" id="user-input" placeholder="Type a message...">
14
+ <button id="send-button">Send</button>
15
+ <button id="voice-button">🎙️ Voice</button>
16
+ </div>
17
+ <script src="/static/script.js"></script>
18
+ </body>
19
+ </html>