-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminDashboard.html
100 lines (90 loc) · 2.75 KB
/
adminDashboard.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> DASHBOARD | INWORK| Invyu Solutions |</title>
<link
rel="shortcut icon"
type="image/x-icon"
href="pictures/play_logo.png"
/>
<!-- Linking Google font link for icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200">
<link rel="stylesheet" href="assets/adminDashboard.css">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="#"> </a></li>
<li><a id="logoutButton" href="#"> LOGOUT</a></li>
<li><a id="aboutButton" href="#"> ABOUT</a></li>
<li><a id="homeButton" href="#"> HOME</a></li>
</ul>
</nav>
<aside class="sidebar">
<div class="logo">
<img src="pictures/play_logo.png" alt="logo">
<h2>Dashboard</h2>
</div>
<ul class="links">
<h4>Main Menu</h4>
<li>
<span class="material-symbols-outlined">person</span>
<a href="profile.html" id="profile">Profile</a>
</li>
<li>
<span class="material-symbols-outlined">show_chart</span>
<a href="employeeList.html">All Employees</a>
</li>
<li>
<span class="material-symbols-outlined">send</span>
<a href="sendNotice.html">Send Notice</a>
</li>
<li>
<span class="material-symbols-outlined">mark_chat_read</span>
<a href="Notice.html">Sent Notice</a>
</li>
<hr>
<h4>Manage Employees</h4>
<li>
<span class="material-symbols-outlined">query_stats</span>
<a href="#">Employee Status</a>
</li>
<li>
<span class="material-symbols-outlined">person_add</span>
<a href="addEmployee.html">Add Employee</a>
</li>
<li>
<span class="material-symbols-outlined">logout</span>
<a href="leaveRequests.html">Leave Requests</a>
</li>
<li>
<span class="material-symbols-outlined">bar_chart</span>
<a href="screentime.html">Screentime</a>
</li>
<li>
<span class="material-symbols-outlined">person_pin_circle</span>
<a href="employeeLocation.html">Geofence</a>
</li>
</ul>
</aside>
<div class="content">
<!-- Your dashboard content goes here -->
<h1>HELLO !!</h1>
<h2>Welcome to the Admin Login.</h2>
<p>This is where you can access all the features and tools you need.</p>
<br><br>
<br><br>
<br><br>
<br><br>
<br><br>
<br><br>
<br><br>
<br><br>
<br><br>
<h6>Not an Admin? Login as <a href="#">Employee.</a></h6>
</div>
</body>
<script src="assets/dashboard.js"></script>
</html>