-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
31 lines (25 loc) · 1.11 KB
/
Copy pathadmin.php
File metadata and controls
31 lines (25 loc) · 1.11 KB
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
<?php require_once('includes/header.php'); ?>
<!--Navigation Bar-->
<?php require_once('includes/nav.php'); ?>
<!--Main Page Content-->
<div class="container">
<div class="card mt-5">
<div class="card-title">
<div class="card-body">
<h2 class="text-center">
<?php
if(logged_in())
{
echo '<div class="alert alert-success"> Click on the following link for submitting your evaluation <a href="admin2.php">Click Here to Submit</a></div>';
//header("location:admin2.php");
}
else
{
header("location:login.php");
}
?> </h2>
</div>
</div>
</div>
</div>
<?php require_once('includes/footer.php'); ?>