File size: 988 Bytes
ab35630
 
 
f5a1145
 
 
 
ab35630
 
f5a1145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ab35630
 
 
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
29
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Recipe Suggestions</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <h1>Recipe Suggestions</h1>
        <form action="/get_recipes" method="POST">
            <label for="ingredients">Select Ingredients:</label>
            <select name="ingredients" id="ingredients" multiple>
                <option value="paneer">Paneer</option>
                <option value="lettuce">Lettuce</option>
                <option value="carrot">Carrot</option>
                <option value="broccoli">Broccoli</option>
                <option value="mushrooms">Mushrooms</option>
            </select>
            <button type="submit">Get Recipes</button>
        </form>
        <div id="recipes">
            <!-- Recipes will be displayed here -->
        </div>
    </div>
</body>
</html>