File size: 1,088 Bytes
5d586ab
 
 
 
 
 
171f0f9
5d586ab
 
 
 
 
4e84def
5d586ab
 
4e84def
5d586ab
 
4e84def
 
 
 
 
 
5d586ab
171f0f9
5d586ab
dbd2afb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Chef Bot</title>
    <link rel="stylesheet" href="/static/styles.css">
</head>
<body>
    <div class="chat-container">
        <div class="chat-header">🍳 Chef Bot</div>
        <div class="chat-messages" id="chatMessages">
            <div class="bot-message">Hi there! I'm Chef Bot! Start typing to find menu items or explore below.</div>
        </div>
        <div class="chat-input">
            <input type="text" id="userInput" placeholder="Type a menu item (e.g., chicken)...">
            <button onclick="sendMessage()">Send</button>
        </div>
        <!-- Suggestions Area -->
        <div class="suggestions-list" id="suggestionsList"></div>
        <!-- Menu Items Area -->
        <div class="ingredients-list" id="menuItemsList"></div>
        <!-- Selected Item Details -->
        <div class="selected-ingredients" id="itemDetails"></div>
    </div>
    <script src="/static/script.js"></script>
</body>
</html>