mirror of
https://github.com/fsr/eseeva
synced 2024-11-15 08:53:11 +01:00
26 lines
791 B
PHP
Executable file
26 lines
791 B
PHP
Executable file
<?php
|
|
include_once 'libs/formLib.php';
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>ESE Evaluation - Key Control Center</title>
|
|
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
|
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<?php
|
|
CreateHeadline("ESE Evaluation Index Page");
|
|
CreateLink("Student Evaluation Questionnaire", "index.php");
|
|
CreateLink("Tutor Evaluation Questionnaire", "tutor_questionnaire.php");
|
|
CreateLink("Key Control Panel", "keyControlPanel.php");
|
|
CreateLink("Key Overview", "keyTable.php");
|
|
CreateLink("Evaluation analysis page", "analysis.php");
|
|
CreateLink("Generate tickets for Monday", "patronGen.php");
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|