-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclientDashboard.html
83 lines (76 loc) · 2.22 KB
/
clientDashboard.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
<!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="client.html">Profile</a>
</li>
<li>
<span class="material-symbols-outlined">mark_chat_read</span>
<a href="#">Notices</a>
</li>
<li>
<span class="material-symbols-outlined">person_pin_circle</span>
<a href="#">Add Geofence</a>
</li>
<li>
<span class="material-symbols-outlined">today</span>
<a href="#">Check Event</a>
</li>
<li>
<span class="material-symbols-outlined">post_add</span>
<a href="postLeave.html">Post Leave</a>
</li>
<li>
<span class="material-symbols-outlined">history</span>
<a href="#">Leave History</a>
</li>
</ul>
</aside>
<div class="content">
<!-- Your dashboard content goes here -->
<h1>HELLO !!</h1>
<h2>Welcome to the Client 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 Employee? Login as an <a href="#">Admin.</a></h6>
</div>
</body>
<script src="dashboard.js"></script>
</html>