Spaces:
Sleeping
Sleeping
Update templates/customdish.html
Browse files- templates/customdish.html +11 -1
templates/customdish.html
CHANGED
@@ -378,7 +378,17 @@
|
|
378 |
</style>
|
379 |
</head>
|
380 |
<body>
|
381 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
<script>
|
383 |
let currentStep = 'greeting'; // other possible values: 'food_type', 'select_ingredients', 'menu_display', 'customization', 'post_cart'
|
384 |
|
|
|
378 |
</style>
|
379 |
</head>
|
380 |
<body>
|
381 |
+
<div class="chat-container">
|
382 |
+
<div class="chat-header">🍳 Chef Bot</div>
|
383 |
+
<div class="chat-messages" id="chatMessages">
|
384 |
+
<!-- Initial message will be set by JavaScript based on session -->
|
385 |
+
</div>
|
386 |
+
<div class="chat-input">
|
387 |
+
<input type="text" id="userInput" placeholder="Type your name or message...">
|
388 |
+
<button onclick="sendMessage()">Send</button>
|
389 |
+
</div>
|
390 |
+
</div>
|
391 |
+
|
392 |
<script>
|
393 |
let currentStep = 'greeting'; // other possible values: 'food_type', 'select_ingredients', 'menu_display', 'customization', 'post_cart'
|
394 |
|