forked from RitishFG/cloudy-thing-7898
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
75 lines (72 loc) · 2.06 KB
/
admin.html
File metadata and controls
75 lines (72 loc) · 2.06 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
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
<!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>Admin Page</title>
<script
src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="Styles/admin.css" />
</head>
<body>
<div id="nav">
<img
src="https://lh3.googleusercontent.com/YraRmSoL8L_U7KHCDHg9bl9tXyMuDZOdb4khahPR3QMrbhJx5cCLE4m3Lgm7-p4_Ysw=w2400"
alt=""
/>
<h2>Welcome to Admin Dashboard</h2>
<button id="logout">LOGOUT</button>
</div>
<div id="heading">
<div>
<p><i class="fa-solid fa-users"></i></p>
<a href="#users"><p>Registered Users</p></a>
</div>
<div>
<p><i class="fa-solid fa-user-graduate"></i></p>
<a href="#enrolled"><p>Enrolled Users</p></a>
</div>
<div>
<p><i class="fa-solid fa-computer"></i></p>
<a href="#online"><p>Online Course</p></a>
</div>
<div>
<p><i class="fa-solid fa-chalkboard-user"></i></p>
<a href="#faculty"><p>Faculty Members</p></a>
</div>
<div>
<p><i class="fa-solid fa-building-columns"></i></p>
<a href="#offline"><p>Offline Batches</p></a>
</div>
<div>
<p><i class="fa-solid fa-graduation-cap"></i></p>
<a href="#companies"><p>Companies</p></a>
</div>
</div>
<div id="users" class="disp">
<h1>User Details</h1>
</div>
<hr />
<div id="enrolled" class="disp">
<h1>Enrolled Users</h1>
</div>
<hr />
<div id="online" class="disp">
<h1>Online Courses</h1>
</div>
<hr />
<h1 class="hhead">Faculty Members</h1>
<div id="faculty"></div>
<hr />
<div id="offline" class="disp">
<h1>Running Offline Batches</h1>
</div>
<hr />
<h1 class="hhead">Top Hiring Partners</h1>
<div id="companies"></div>
</body>
</html>
<script src="Scripts/admin.js"></script>