-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
69 lines (61 loc) · 1.94 KB
/
dashboard.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cookbook</title>
<link rel="stylesheet" href="./css//dashboard.css" />
</head>
<body>
<h1>Welcome to Cookbook <span id="userName"></span>!</h1>
<p>Your email: <span id="userEmail"></span></p>
<a href="logout.php">Logout</a>
<!-- Recipes Section -->
<h2>Recipes</h2>
<!-- Search and Filter Form -->
<a href="saved_recipes.html">
<button>View Saved Recipes</button>
</a>
<form id="searchForm">
<!-- Search by recipe title -->
<label for="search">Search Recipes:</label>
<input
type="text"
id="search"
name="search"
placeholder="Enter recipe name..."
/>
<!-- Filter by ingredient -->
<label for="ingredient">Ingredient:</label>
<input
type="text"
id="ingredient"
name="ingredient"
placeholder="Enter ingredient..."
/>
<!-- Filter by category -->
<label for="category">Category:</label>
<select name="category" id="category">
<option value="">All Categories</option>
<option value="Main">Main</option>
<option value="Dessert">Dessert</option>
<option value="Starter">Starter</option>
</select>
<!-- Filter by cook time -->
<label for="cook_time">Cook Time:</label>
<select name="cook_time" id="cook_time">
<option value="">Any</option>
<option value="30">Under 30 minutes</option>
<option value="60">Under 60 minutes</option>
<option value="120">Under 120 minutes</option>
</select>
<button type="submit">Search</button>
</form>
<!-- Displaying search results -->
<div id="results">
<ul id="recipesList"></ul>
</div>
<!-- Link to external JavaScript file -->
<script src="js/dashboard.js"></script>
</body>
</html>