lokesh341 commited on
Commit
388c4e1
·
verified ·
1 Parent(s): 0d3fa26

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +24 -0
templates/index.html CHANGED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Chef Bot</title>
7
+ <link rel="stylesheet" href="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" role="log" aria-live="polite">
13
+ <div class="bot-message">Hello! I’m Chef Bot, your culinary assistant! What’s your name?</div>
14
+ </div>
15
+ <div class="suggestions-list" id="suggestionsList"></div>
16
+ <div class="ingredients-list" id="menuItemsList"></div>
17
+ <div class="chat-input">
18
+ <input type="text" id="userInput" placeholder="Type here (e.g., paneer, chicken)..." aria-label="Enter dish or preference">
19
+ <button onclick="sendMessage()" aria-label="Send message">Send</button>
20
+ </div>
21
+ </div>
22
+ <script src="script.js"></script>
23
+ </body>
24
+ </html>