-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_home.php
69 lines (67 loc) · 2.17 KB
/
admin_home.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
<?php
session_start();
require_once "includer.php";
//require_once "includes/check_logged.php";
if(!is_admin()){
redirect("adminlogin.php");
}
?>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="public/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="public/css/all.css" />
<link rel="stylesheet" type="text/css" href="public/css/fontawesome.css" />
<title>Welcome Admin</title>
<?php
require_once "includes/styles.php";
?>
<style>
.center{
margin-top: 7vh;
}
</style>
</head>
<body>
<!--<a href="logout.php" class="float-right">Sign out</a>-->
<?php
include_once "includes/admin_nav_logged_in.php";
?>
<div class="clearfix"></div>
<div class="col-md-8 offset-3 center">
<a class="btn btn-primary text-white p-2 rounded col-md-4 m-4" href="questionsandevaluations.php">
<span><i class="fa fa-chart-bar fa-4x"></i> & <i class="fa fa-question fa-4x"></i> </span>
<br><br>
<strong>Evaluations & Questions</strong>
</a>
<a class="btn btn-primary text-white p-2 rounded col-md-4" href="lecturers.php">
<span><i class="fa fa-user-graduate fa-4x"></i></span>
<br><br>
<strong>Lecturer Management</strong>
</a>
<a class="btn btn-primary text-white p-2 rounded col-md-4 m-4" href="courses.php">
<span><i class="fa fa-bars fa-4x"></i></span>
<br><br>
<strong>Units and Courses</strong>
</a>
<a class="btn btn-primary text-white p-2 rounded col-md-4" href="schools.php">
<span><i class="fa fa-school fa-4x"></i></span>
<br><br>
<strong>Schools</strong>
</a>
<a class="btn btn-primary text-white p-2 rounded col-md-4 m-4" href="hodanddepartments.php">
<span><i class="fa fa-fingerprint fa-4x"></i></span>
<br><br>
<strong>Departments & HODs</strong>
</a>
<a class="btn btn-primary text-white p-2 rounded col-md-4" href="students.php">
<span><i class="fa fa-graduation-cap fa-4x"></i></span>
<br><br>
<strong>Student Information</strong>
</a>
</div>
<?php
require_once "includes/scripts.php";
?>
</body>
</html>