whtet commited on
Commit
a915ce2
·
verified ·
1 Parent(s): 504dba0

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +23 -18
templates/index.html CHANGED
@@ -1,19 +1,24 @@
1
- <html lang="en">
2
- <head>
3
- <meta charset="UTF-8">
4
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
- <title>Chatbot UI</title>
6
- <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
7
- </head>
8
- <body>
9
- <div class="chat-container">
10
- <div class="chat-box" id="chatbox"></div>
11
- <div class="input-area">
12
- <button id="mic-button">🎤</button>
13
- <input type="text" id="user-input" placeholder="Type a message...">
14
- <button id="send-button">Send</button>
15
- </div>
16
- </div>
17
- <script src="{{ url_for('static', filename='js/script.js') }}"></script>
18
- </body>
 
 
 
 
 
19
  </html>
 
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
+ <title>Chatbot</title>
7
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
8
+ </head>
9
+ <body>
10
+ <div class="chat-container">
11
+ <div class="chat-header">
12
+ <button class="back-button">&larr;</button>
13
+ <span>Chat</span>
14
+ </div>
15
+ <div class="chat-box" id="chatbox"></div>
16
+ <div class="input-area">
17
+ <button id="mic-button">🎤</button>
18
+ <input type="text" id="user-input" placeholder="Write a message...">
19
+ <button id="send-button" style="display: none;">&#10148;</button>
20
+ </div>
21
+ </div>
22
+ <script src="{{ url_for('static', filename='js/script.js') }}"></script>
23
+ </body>
24
  </html>