Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +23 -18
templates/index.html
CHANGED
@@ -1,19 +1,24 @@
|
|
1 |
-
|
2 |
-
<
|
3 |
-
|
4 |
-
<meta
|
5 |
-
<
|
6 |
-
<
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
<div class="
|
12 |
-
<button
|
13 |
-
<
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
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">←</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;">➤</button>
|
20 |
+
</div>
|
21 |
+
</div>
|
22 |
+
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
|
23 |
+
</body>
|
24 |
</html>
|