forked from deepmajoka07/-likely-cough-9107
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser_Admin.html
58 lines (53 loc) · 1.97 KB
/
User_Admin.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User(Admin)</title>
<link rel="stylesheet" href="./Styles/User_admin.css" />
<link rel="stylesheet" href="./styles/Admin_Home.css">
</head>
<body>
<!------------------------------------- navigation bar ------------------------------------------>
<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>
<a href="./Admin_Home.html" style="color:black;position: fixed;left: 5%;top:138px;">Admin Dashboard</a></div>
<br> -->
<div class="container">
<h1 class="admin">User Pannel</h1>
<table class="user_table" >
<thead>
<th>S.No</th>
<th>Profile Photo</th>
<th>Name</th>
<th>Email</th>
<th>Gender</th>
<th>Phone No</th>
<th>Zip Code</th>
<th>Action</th>
</thead>
<tbody id="tbody" >
</tbody>
</table>
</div>
</div>
<span class="notification" id="out"> ✅ Logout Success</span>
</body>
</html>
<script src="./scripts/User_admin.js"></script>