Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +5 -5
templates/index.html
CHANGED
@@ -3,20 +3,20 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>
|
7 |
<link rel="stylesheet" href="/static/styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="chat-container">
|
11 |
-
<div class="chat-header"
|
12 |
<div class="chat-messages" id="chatMessages">
|
13 |
-
<div class="bot-message">Hi there! I'm
|
14 |
</div>
|
15 |
<div class="chat-input">
|
16 |
-
<input type="text" id="userInput" placeholder="Type your
|
17 |
<button onclick="sendMessage()">Send</button>
|
18 |
</div>
|
19 |
</div>
|
20 |
<script src="/static/script.js"></script>
|
21 |
</body>
|
22 |
-
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>FAQ Bot</title>
|
7 |
<link rel="stylesheet" href="/static/styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="chat-container">
|
11 |
+
<div class="chat-header">📝 FAQ Bot</div>
|
12 |
<div class="chat-messages" id="chatMessages">
|
13 |
+
<div class="bot-message">Hi there! I'm your assistant! How can I help you today?</div>
|
14 |
</div>
|
15 |
<div class="chat-input">
|
16 |
+
<input type="text" id="userInput" placeholder="Type your question...">
|
17 |
<button onclick="sendMessage()">Send</button>
|
18 |
</div>
|
19 |
</div>
|
20 |
<script src="/static/script.js"></script>
|
21 |
</body>
|
22 |
+
</html>
|