rename html folder to public

This commit is contained in:
Marijn Jansen
2017-01-13 14:44:45 +01:00
parent faf5442528
commit 1cffad77d6
35 changed files with 1 additions and 11 deletions

24
website/public/admin.php Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<?php include("../views/head.php"); ?>
<style>
@import url("styles/adminpanel.css");
</style>
</head>
<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/adminpanel.php");
/* This adds the footer. */
include("../views/footer.php");
?>
</body>
</html>