Spaces:
Runtime error
Runtime error
<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> | |