Initial website

This commit is contained in:
2017-10-25 12:43:25 -04:00
commit c95ced87b5
5 changed files with 259 additions and 0 deletions

20
index.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
require_once 'lib/View.php';
$view = new View();
$view->setTitle("CSE 435 Group 6")
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
echo $view->head();
?>
</head>
<body>
<?php
echo $view->header();
echo $view->page();
echo $view->footer();
?>
</body>
</html>