-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
83 lines (68 loc) · 2.18 KB
/
product.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
79
80
81
82
83
<!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" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.0.0-alpha.1/axios.min.js"
integrity="sha512-xIPqqrfvUAc/Cspuj7Bq0UtHNo/5qkdyngx6Vwt+tmbvTLDszzXM0G6c91LXmGrRx8KEPulT+AfOOez+TeVylg=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<style>
#products {
color: #20b883;
border-bottom: 3px solid #20b883;
}
</style>
<title>Web App</title>
</head>
<body>
<div class="Topbar_Topbar">
<div class="Topbar_LogoWrapper">
<img src="./logo.png" alt="logo" />
</div>
<nav>
<a href="order.html">Orders</a>
<a href="product.html" id="products">Products</a>
<a href="user.html">Users</a>
</nav>
<p id="logout" onclick="logOut()">Logout</p>
</div>
<div class="maincontainer">
<h1>Products</h1>
<div class="Homepageorders">
<div id="filters">
<p id="filtxt"><b> Filters </b></p>
<p id="total">Count:0</p>
<div>
<p>
<label class="checkbox"><input type="checkbox" name="expired" id="expired" checked
onclick="getUsers()" />Expired</label>
</p>
<p>
<label class="checkbox"><input type="checkbox" name="lowstock" id="lowstock" checked
onclick="getUsers()" />lowstock</label>
</p>
</div>
</div>
<table class="Homepage_OrderTable">
<tr>
<th>ID</th>
<th>Product Name</th>
<th>Product Brand</th>
<th>Expiry Date</th>
<th>Unit Price</th>
<th>Stock</th>
</tr>
<tbody id="mytabledata">
<tr></tr>
</tbody>
</table>
</div>
</div>
<script src="./product.js">
</script>
</body>
</html>