Yaswanth56 commited on
Commit
fc1d6f7
·
verified ·
1 Parent(s): 4ebc5ed

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +27 -0
templates/index.html ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Recipe Assistant</title>
7
+ <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
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">Send</button>
21
+ </form>
22
+ </div>
23
+ </div>
24
+
25
+ <script src="{{ url_for('static', filename='scripts.js') }}"></script>
26
+ </body>
27
+ </html>