Spaces:
Running
Running
Update templates/index.html
Browse files- templates/index.html +13 -1
templates/index.html
CHANGED
@@ -30,11 +30,23 @@
|
|
30 |
right: 10px;
|
31 |
cursor: pointer;
|
32 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
</style>
|
34 |
</head>
|
35 |
<body>
|
36 |
<div class="chat-container">
|
37 |
-
<div class="chat-header">🍳 Chef Bot
|
|
|
|
|
38 |
<div class="chat-messages" id="chatMessages">
|
39 |
<div class="bot-message">Hi there! I'm Chef Bot! May I know your name?</div>
|
40 |
</div>
|
|
|
30 |
right: 10px;
|
31 |
cursor: pointer;
|
32 |
}
|
33 |
+
.reset-btn {
|
34 |
+
position: absolute;
|
35 |
+
top: 10px;
|
36 |
+
right: 10px;
|
37 |
+
background: none;
|
38 |
+
border: none;
|
39 |
+
font-size: 20px;
|
40 |
+
cursor: pointer;
|
41 |
+
color: #f28c38;
|
42 |
+
}
|
43 |
</style>
|
44 |
</head>
|
45 |
<body>
|
46 |
<div class="chat-container">
|
47 |
+
<div class="chat-header">🍳 Chef Bot
|
48 |
+
<button class="reset-btn" onclick="resetChat()">↻</button>
|
49 |
+
</div>
|
50 |
<div class="chat-messages" id="chatMessages">
|
51 |
<div class="bot-message">Hi there! I'm Chef Bot! May I know your name?</div>
|
52 |
</div>
|