-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
46 lines (43 loc) · 2.12 KB
/
admin.html
File metadata and controls
46 lines (43 loc) · 2.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Panel | RAJATECH</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</head>
<body style="background: #050816;">
<nav class="nav-bar">
<div class="logo"><h3>ADMIN<span style="color:var(--primary)">PANEL</span></h3></div>
<div class="nav-btns">
<button class="logout-btn" style="background:var(--secondary); color:#fff;" onclick="location.href='portfolio.html'">Dashboard</button>
<button id="logoutBtn" class="logout-btn">Logout</button>
</div>
</nav>
<div class="main-content" style="display: flex !important; align-items: flex-start; justify-content: center; padding-top: 100px;">
<div class="glass-card" style="max-width: 1000px; width: 95%;">
<div style="display:flex; justify-content:space-between; align-items: center; margin-bottom:20px;">
<h2>User Database</h2>
<button class="btn" style="background:var(--primary); padding:8px 15px; color:#000; font-weight:bold;" onclick="location.reload()">Refresh List</button>
</div>
<div style="overflow-x:auto;">
<table style="width:100%; border-collapse: collapse; color: #fff; min-width: 600px;">
<thead>
<tr style="text-align:left; border-bottom: 2px solid var(--primary);">
<th style="padding:12px;">Profile</th>
<th style="padding:12px;">Name</th>
<th style="padding:12px;">Aadhar</th>
<th style="padding:12px;">Category</th>
<th style="padding:12px;">Action</th>
</tr>
</thead>
<tbody id="userTable">
</tbody>
</table>
</div>
</div>
</div>
<script type="module" src="admin.js"></script>
</body>
</html>