Added a general secure view for pages in the secure

section of the website.
This commit is contained in:
2017-10-30 11:11:36 -04:00
parent 2628cc8b80
commit 67030dc870
5 changed files with 80 additions and 5 deletions

22
secure/milestones.php Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<?php
require_once "../lib/prelude.inc.php";
require_once "../lib/protected.inc.php";
require_once "../lib/MilestonesView.php";
$view = new MilestonesView();
$view->setTitle("Milestones and Deadlines");
?>
<html>
<head>
<?php
echo $view->head();
?>
</head>
<body>
<?php
echo $view->header();
echo $view->page();
echo $view->footer();
?>
</body>
</html>