-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 2.53 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pantry Tracker</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class="container mt-5">
<h1 class="text-center"><i class="fa-solid fa-shop"></i>Pantry Tracker</h1>
<form id="addItemForm" class="my-4">
<div class="form-row">
<div class="form-group col-md-4">
<label for="itemName">Item Name</label>
<input type="text" id="itemName" class="form-control" required>
</div>
<div class="form-group col-md-3">
<label for="quantity">Quantity</label>
<input type="number" id="quantity" class="form-control" required>
</div>
<div class="form-group col-md-3">
<label for="expirationDate">Expiration Date</label>
<input type="date" id="expirationDate" class="form-control">
</div>
<div class="form-group col-md-2 d-flex align-items-end">
<button type="submit" class="btn btn-primary w-100"><i class="fa-solid fa-wand-magic-sparkles"></i>Add Item</button>
</div>
</div>
</form>
<table class="table table-striped table-bordered">
<thead class="thead-dark">
<tr>
<th><i class="fa-solid fa-pen-to-square"></i>Item Name</th>
<th><i class="fa-solid fa-feather"></i>Quantity</th>
<th><i class="fa-solid fa-ghost"></i>Expiration Date</th>
<th><i class="fa-solid fa-trash"></i>Actions</th>
</tr>
</thead>
<tbody id="pantryItems">
<!-- Items will be added here dynamically -->
</tbody>
</table>
</div>
<script src="app.js"></script>
<script src="https://kit.fontawesome.com/2b06d54e95.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>