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