Added Login page

This commit is contained in:
Joey Lai
2017-01-11 15:41:27 +01:00
parent 6b9a322d4e
commit e36caf46ce
2 changed files with 143 additions and 16 deletions

21
website/template.php Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<?php
include("views/head.php");
?>
<body>
<?php
/*
* This view adds the main layout over the screen.
* Header and menu.
*/
include("views/main.php");
/* Add your view files here. */
include("views/homepage.php");
/* This adds the footer. */
include("views/footer.php");
?>
</body>
</html>