Yaswanth56 commited on
Commit
1b55d17
·
verified ·
1 Parent(s): 9dae632

Update templates/index.html

Browse files
Files changed (1) hide show
  1. 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
- <div id="messages"></div>
18
- <form id="message-form">
19
  <input type="text" id="input" placeholder="Enter ingredients separated by + (e.g., coffee + milk)">
20
- <button type="submit">
21
- <span>Send</span>
22
- </button>
23
- </form>
 
 
 
 
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>