-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrders.html
71 lines (66 loc) · 1.86 KB
/
Orders.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Orders</title>
<link rel="stylesheet" href="orders_admin.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
/>
</head>
<body>
<header>
<input type="checkbox" name="" id="toggler" />
<label for="toggler" class="fas fa-bars"></label>
<a href="../admin/admin_dashboard.php" class="logo"
>Khloris<span>.</span></a
>
<nav class="navbar">
<a href="../admin/admin_dashboard.php">Home</a>
<a href="../admin/add_products.php">Add Products</a>
<a href="../admin/view_products.php">View Products</a>
<a href="../admin/orders.php">Orders</a>
<a href="#Orders">Users</a>
</nav>
<div class="icons">
<a
href="admin_logout.php"
class="fa-solid fa-right-from-bracket"
onclick="return confirmLogout()"
></a>
</div>
</header>
<div class="info_orders">
<h1>Orders <span>Placed</span></h1>
<table>
<tr>
<th>Order Id</th>
<th>User Id</th>
<th>Total</th>
<th>Delivery Option</th>
<th>Date of<br />Order</th>
<th>Date of<br />Delivery</th>
<th>Status</th>
<th>Cancel</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<script>
function confirmLogout() {
return confirm("Are you sure you want to log out?");
}
</script>
</body>
</html>