Added a general secure view for pages in the secure
section of the website.
This commit is contained in:
22
secure/milestones.php
Normal file
22
secure/milestones.php
Normal 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>
|
||||
Reference in New Issue
Block a user