Added settings page.

This commit is contained in:
Marijn Jansen
2017-01-12 11:00:44 +01:00
parent e765be40aa
commit 319a406d6f
5 changed files with 25 additions and 3 deletions

19
website/settings.php Normal file
View File

@@ -0,0 +1,19 @@
<!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/settings-view.php");
/* This adds the footer. */
include("views/footer.php");
?>
</body>
</html>