-
Notifications
You must be signed in to change notification settings - Fork 0
/
hodanddepartments.php
48 lines (48 loc) · 1.27 KB
/
hodanddepartments.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
<?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>Admin</title>
<?php
require_once "includes/styles.php";
?>
<style>
.center{
margin-top: 20vh;
}
</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="hods.php">
<span><i class="fa fa-chalkboard-teacher fa-4x"></i></span>
<br><br>
<strong>HODs</strong>
</a>
<a class="btn btn-primary text-white p-2 rounded col-md-4" href="departments.php">
<span><i class="fa fa-question-circle fa-4x"></i></span>
<br><br>
<strong>Departments</strong>
</a>
<br><br>
</div>
<?php
require_once "includes/scripts.php";
?>
</body>
</html>