Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +13 -7
templates/index.html
CHANGED
|
@@ -8,19 +8,25 @@
|
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<div class="container">
|
|
|
|
| 11 |
<header>
|
| 12 |
-
<h1>Recipe Assistant</h1>
|
| 13 |
<p>Discover delicious recipes based on your ingredients!</p>
|
| 14 |
</header>
|
| 15 |
|
|
|
|
| 16 |
<div class="chat-box">
|
| 17 |
-
<
|
| 18 |
-
<
|
| 19 |
<input type="text" id="input" placeholder="Enter ingredients separated by + (e.g., coffee + milk)">
|
| 20 |
-
<
|
| 21 |
-
<
|
| 22 |
-
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
</div>
|
| 25 |
|
| 26 |
<footer>
|
|
|
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<div class="container">
|
| 11 |
+
<!-- Heading with emoji -->
|
| 12 |
<header>
|
| 13 |
+
<h1>Recipe Assistant 🧑🍳</h1>
|
| 14 |
<p>Discover delicious recipes based on your ingredients!</p>
|
| 15 |
</header>
|
| 16 |
|
| 17 |
+
<!-- Search and result container -->
|
| 18 |
<div class="chat-box">
|
| 19 |
+
<!-- Search input section -->
|
| 20 |
+
<div class="input-section">
|
| 21 |
<input type="text" id="input" placeholder="Enter ingredients separated by + (e.g., coffee + milk)">
|
| 22 |
+
<div class="buttons">
|
| 23 |
+
<button id="clear" class="button clear-btn">Clear</button>
|
| 24 |
+
<button id="submit" class="button submit-btn">Submit</button>
|
| 25 |
+
</div>
|
| 26 |
+
</div>
|
| 27 |
+
|
| 28 |
+
<!-- Results display -->
|
| 29 |
+
<div id="messages" class="messages"></div>
|
| 30 |
</div>
|
| 31 |
|
| 32 |
<footer>
|