forked from hngi/WikiPoli-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin-dashboard-general.html
56 lines (55 loc) · 2.06 KB
/
admin-dashboard-general.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
<!DOCTYPE html>
<html>
<head>
<title>
Dashboard | General
</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles/admin-dashboard-general.css">
<link rel="stylesheet" type="text/css" href="styles/admin-dashboard-sidebar.css">
<link rel="icon" type="img/png" href="images/favicon.png">
</head>
<body>
<input type="checkbox" id="mobile-bars-check" />
<label for="mobile-bars-check" id="mobile-bars">
<div class="stix" id="stik1"></div>
<div class="stix" id="stik2"></div>
<div class="stix" id="stik3"></div>
</label>
<section id="admin-sidebar-general">
<div class="icon-div">
<img src="images/house-icon.png" height="30px">
<span>Wiki</span><span class="blue-text">Poli</span>
</div>
<a href="admin-dashboard-general.html" class="sidebar-links sidebar-active-link">Dashboard</a>
<a href="dashboard-activity.html" class="sidebar-links">Activities</a>
<a href="postpage1.html" class="sidebar-links">Posts</a>
<a href="" class="sidebar-links">Users</a>
<a href="admin-privileges.html" class="sidebar-links">Manage Privileges</a>
<a href="" class="sidebar-links" id="logout">Logout</a>
</section>
<main class="admin-main-general" id="admin-main">
<header>
<div class="icon-div">
<img src="images/house-icon.png" height="30px">
<span>Wiki</span><span class="blue-text">Poli</span>
</div>
<div id="user-div">
<span id="name-plate">Hello, xyluz</span>
<img src="images/profilepic.png" height="30px">
</div>
</header>
<h1 id="intro">Admin Dashboard</h1>
<section id="main-options">
<a href="dashboard-activity.html">Recent Activities Overview</a>
<a href="postpage1.html">Posts</a>
<a href="">Users</a>
<a href="admin-privileges.html">Manage Privileges</a>
</section>
</main>
<script src="scripts/admin-sidebar-general.js"></script>
</body>
</html>