forked from deepmajoka07/-likely-cough-9107
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder.html
66 lines (53 loc) · 2.01 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
<!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">
<title>Order Pannel</title>
<link rel="stylesheet" href="./styles/order.css">
</head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<body>
<div class="mainContainer">
<div class="navigator">
<div class="navbar">
<div class="logo">
<img src="./images/logo.png" alt="">
</div>
<div class="links">
<a href="./Admin_Home.html">Dashboard</a>
<a href="./Admin_Product.html">All Product</a>
<a href="./Admin_newProd.html">New Product</a>
<a href="./User_Admin.html">Users</a>
<a href="./order.html">Order</a>
<a id="logout">Logout</a>
</div>
</div>
</div>
<!-- <div class="month_Chart">
<h1 class="admin">Admin Pannel</h1>
<h2 class="heading">Monthly Pie Chart</h2> -->
<!-- <div id="myChart"></div> -->
<div id="table">
<table id="table_Tr">
<tr >
<th>Order-ID</th>
<th>USER ID</th>
<th>NAME</th>
<th>EMAIL</th>
<th>Mobile</th>
<th>PP</th>
<th>Address</th>
<th>Date</th>
<th>Zip</th>
</tr>
<tbody id="table_details">
</tbody>
</table>
</div>
</div>
<span class="notification" id="out"> ✅ Logout success</span>
</body>
<script src="./scripts/order.js"></script>
</html>