-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder.html
89 lines (77 loc) · 2.52 KB
/
order.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
84
85
86
87
88
89
<!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 rel="stylesheet" href="./style.css" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap"
rel="stylesheet">
<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>
#orders {
color: #20b883;
border-bottom: 3px solid #20b883;
}
/* .checkbox input{
color: blue;
} */
</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="orders.html" id="orders">Orders</a>
<a href="product.html">Products</a>
<a href="user.html">Users</a>
</nav>
<p id="logout" onclick="logOut()">Logout</p>
</div>
<div class="maincontainer">
<h1>Orders</h1>
<div class="Homepageorders">
<div id="filters">
<p id="filtxt">Filters</p>
<p id="count">Count:0</p>
<div>
<p>
<label class="checkbox"><input type="checkbox" name="orders" value="New" checked
onclick="getUsers()" />New</label>
</p>
<p>
<label class="checkbox"><input type="checkbox" name="orders" value="Packed" checked
onclick="getUsers()" />Packed</label>
</p>
<p>
<label class="checkbox"><input type="checkbox" name="orders" value="InTransit" checked
onclick="getUsers()" />InTransit</label>
</p>
<p>
<label class="checkbox"><input type="checkbox" name="orders" value="Delivered" checked
onclick="getUsers()" />Delievered</label>
</p>
</div>
</div>
<table class="Homepage_OrderTable">
<tr>
<th>ID</th>
<th>Customer</th>
<th>Date</th>
<th>Amount</th>
<th>Status</th>
</tr>
<tbody id="mytabledata">
<tr></tr>
</tbody>
</table>
</div>
</div>
<script src="./order.js"></script>
</body>
</html>