-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_panel.php
81 lines (59 loc) · 1.71 KB
/
admin_panel.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
session_start();
include_once 'includes/dbh_inc.php';
?>
<head>
<title>Admin Panel</title>
<link href='https://fonts.googleapis.com/css?family=ABeeZee' rel='stylesheet'>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="icon"
type="image/png"
href="includes\images\School Hub Small Logo image.png">
<style>
h1 {
background-color:rgb(128, 159, 255)
}
h1 {
color:white
}
body {
font-family: 'ABeeZee';font-size: 22px;
}
table {
width: 75%;
border: 1px solid black;
padding: 15px;
}
th, tr {
border: 1px solid black;
padding:15px;
}
</style>
</head>
<body style="background-color:powderblue;">
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.php"><img src="\includes\images\School Hub small logo image.png" width=50px height=40px></a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="index.php">Home</a></li>
<li><a href="courses.php">Courses</a></li>
<li><a href="profile.php">Profile</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="signup.php"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="login.php"><span class="glyphicon glyphicon-log-in"></span> Login/Logout</a></li>
</ul>
</div>
</nav>
<h1>Admin Panel</h1>
<h3>Pending roles:</h3>
<?php
?>
</body>
</html>