-
Notifications
You must be signed in to change notification settings - Fork 0
/
extend.php
52 lines (50 loc) · 904 Bytes
/
extend.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
<?php
session_start();
require_once "includer.php";
if(!is_admin()){
redirect("adminlogin.php");
}
$field = "evaluation";
$page = "evaluations.php";
if(no_get($field)){
redirect($page);
}
$id = get($field);
$evaluation = Evaluation::getById($id);
if(zero($evaluation)){
redirect($page);
}
if(!no_post("save")){
print_r($_POST);
}
?>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Lecturer Evaluation - Extend Evaluation</title>
<?php
require_once "includes/styles.php";
?>
<style>
.center{
margin-top: 20vh;
}
.navbar .dropdown-menu-right{
left:auto;
right:0;
}
</style>
</head>
<body>
<?php
include_once "includes/admin_nav_logged_in.php";
?>
<div class="clearfix"></div>
<br><br>
<div class="col-md-8 offset-2">
</div>
<?php
require_once "includes/scripts.php";
?>
</body>
</html>