-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
58 lines (58 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products</title>
<link rel="stylesheet" href="./index.css">
<!-- jquery CDN -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
</head>
<body>
<header class="Header" id="top-bar">
<div id="left-part">
<div id="logo">
<img src="Assets/Logo.png" alt="page-logo.png">
<p>Kafene</p>
</div>
<nav id="nav-bar">
<a href="./index.html">Orders</a>
<a href="#" class="active">Products</a>
<a href="./users.html">Users</a>
</nav>
</div>
<div id="right-part">
<a href="./#.html">Logout</a>
</div>
</header>
<main>
<div id="Products-section" class="page-wrapper">
<h1>Products</h1>
<div id="product-wrapper" class="content-wrapper">
<div id="filters-section">
<h3>Filters</h3>
<div id=filters-wrapper>
<p>Count: <span id="count">0</span></p>
<label class="filter-checkbox"><input type="checkbox" name="products-expired" value="Expired" checked>Expired</label>
<label class="filter-checkbox"><input type="checkbox" name="products-lowstock" value="Low Stock" checked>Low Stock</label>
</div>
</div>
<div id="order-list">
<table id="order-table">
<tr>
<th>ID</th>
<th>Product Name</th>
<th>Product Brand</th>
<th>Expiry Date</th>
<th>Unit Price</th>
<th>Stock</th>
</tr>
</table>
</div>
</div>
</div>
</main>
<script src="./product.js"></script>
<script src="./local.js"></script>
</body>
</html>