-
Notifications
You must be signed in to change notification settings - Fork 1
/
add-items.html
78 lines (65 loc) · 3.36 KB
/
add-items.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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add Item(s) | Grocery Grabber</title>
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon_io/favicon-32x32.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/7f42bb4d5d.js" crossorigin="anonymous"></script>
</head>
<body class="justify-flex-start">
<header class="flex flex-column items-center justify-center w-full">
<a href="index.html">
<img src="./assets/gg-transparent-logo2.png" alt="grocery Grabber logo">
</a>
<a href="about-us.html">
<img src="./assets/gg-team-logo.png" alt="grocery Grabber logo">
</a>
</header>
<main class="form-container" id="addItemsMain">
<form id="grocery-form">
<fieldset>
<legend>Add Item</legend>
<div class="form-group flex flex-column p-2">
<label for="category">Category:</label>
<select name="category" id="category" aria-label="Category" required>
<option value="" selected disabled>Select a category</option>
</select>
</div>
<div class="form-group">
<label for="item_name">Item Name:</label>
<input type="text" id="item_name" name="item_name" placeholder="Item Name" required>
</div>
<div class="form-group">
<label for="quantity">Quantity:</label>
<input type="number" id="quantity" name="quantity" min="1" placeholder="Quantity" required>
</div>
<div class="form-group">
<label for="measurement" class="visually-hidden">UCM:</label>
<select name="measurement" id="measurement" aria-label="Measurement" required>
<option value="" selected disabled>Select a measurement</option>
</select>
</div>
<div class="button-group">
<button class="button" type="submit" id="add_item_button"><i class="fa-solid fa-plus fa-xs"></i> Add Item</button>
<button class="button" type="button" id="cancel-button"><i class="fa-solid fa-xmark fa-xs"></i> Cancel </button>
</div>
</fieldset>
</form>
</main>
<footer>
<nav class="flex flex-row justify-around items-center">
<a href="./index.html" class="homeToolTip"><i class="fa-solid fa-house-chimney fa-xl" style="color: #c0aa5d;"></i><span class="tooltiptext">Home</span></a>
<a href="./grocery-list.html" class="groceryToolTip"><i class="fa-solid fa-list-check fa-xl" style="color: #c0aa5d;"></i><span class="tooltiptext">Grocery List</span></a>
<a href="./recipe-list.html" class="recipeToolTip"><i class="fa-solid fa-book-open fa-xl" style="color: #c0aa5d;"></i><span class="tooltiptext">Recipe List</span></a>
<a href="./about-us.html" class="teamToolTip"><i class="fa-solid fa-code fa-xl" style="color: #c0aa5d;"></i><span class="tooltiptext">Meet the Team</span></a>
</nav>
<p class="text-center">© 2023 <a href="https://github.com/re-factored" target="_blank" rel="noopener noreferrer">RE-FACTORED Inc.</a><br> All Rights Reserved</p>
</footer>
<script src="js/app.js"></script>
</body>
</html>