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

Rename templates/chatbot.html to templates/chat.html

Browse files
Files changed (2) hide show
  1. templates/chat.html +24 -0
  2. templates/chatbot.html +0 -19
templates/chat.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 Chat</title>
8
+ </head>
9
+ <body>
10
+ <header>
11
+ <h1>Chat with Our Virtual Assistant</h1>
12
+ <p>Get help with hotel bookings through voice or text</p>
13
+ </header>
14
+ <main>
15
+ <div id="chat-container">
16
+ <div id="chat-history"></div>
17
+ <input type="text" id="user-input" placeholder="Type your message...">
18
+ <button id="send-button">Send</button>
19
+ <button id="voice-chat">Start Voice Chat</button>
20
+ </div>
21
+ </main>
22
+ <script src="{{ url_for('static', filename='script.js') }}"></script>
23
+ </body>
24
+ </html>
templates/chatbot.html DELETED
@@ -1,19 +0,0 @@
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>