-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.php
55 lines (45 loc) · 2.38 KB
/
dashboard.php
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
<?php require_once("includes/Sessions.php"); ?>
<?php require_once("includes/functions.php"); ?>
<html>
<head>
<title> Admin Dashboard</title>
<script src="jquery-3.4.1.min.js"></script>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="adminstyles.css">
<script src="bootstrap.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-2">
<h1> Matthew</h1>
<ul id="Side_Menu" class="nav-pills nav-stacked">
<li class="active"><a href="Dashboard.php"><span class="glyphicon glyphicon-th"></span>Dashboard</a></li>
<li><a href="#"><span class="glyphicon glyphicon-list-alt"></span> Add new post</a></li>
<li><a href="Categories.php"><span class="glyphicon glyphicon-tags"></span> Categories</a></li>
<li><a href="#"><span class="glyphicon glyphicon-th"></span> Add New User</a></li>
<li><a href="#"><span class="glyphicon glyphicon-user"></span> Manage Admins</a></li>
<li><a href="#"><span class="glyphicon glyphicon-comment"></span> Comments</a></li>
<li><a href="#"><span class="glyphicon glyphicon-equalizer"></span> Live</a></li>
<li><a href="#"><span class="glyphicon glyphicon-log-out"></span> Logout</a></li>
</ul>
</div> <!--End of col-sm-2-->
<div class="col-sm-10" id="white">
<h1>Admin Dashboard</h1>
<div> <?php echo message();
echo SuccessMessage();
?></div>
<p> I am Matthew Idungafa a passionate tech enthuiast, lover of gym and Music.</p>
<h1>About</h1>
<p> I am Matthew Idungafa a passionate tech enthuiast, lover of gym and Music.</p>
<h1>About</h1>
<p> I am Matthew Idungafa a passionate tech enthuiast, lover of gym and Music.</p>
<h1>About</h1>
<p> I am Matthew Idungafa a passionate tech enthuiast, lover of gym and Music.</p>
</div>
</div>
</div>
<script>
</script>
</body>
</html>