Draft page added

This commit is contained in:
2017-10-30 11:18:53 -04:00
parent 67030dc870
commit e26a57c744
3 changed files with 49 additions and 0 deletions

22
secure/drafts.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/DraftsView.php";
$view = new DraftsView();
$view->setTitle("Drafts");
?>
<html>
<head>
<?php
echo $view->head();
?>
</head>
<body>
<?php
echo $view->header();
echo $view->page();
echo $view->footer();
?>
</body>
</html>