From 6294ae5d5070f6775a9bbff5289c590d820f9c95 Mon Sep 17 00:00:00 2001 From: Bryan Date: Wed, 29 May 2019 19:33:35 +0200 Subject: [PATCH] Prepared website with even cleaner file structure and layout --- index.php | 2 +- lib/php/dashboard.php | 2 +- lib/php/{ => management}/insert.php | 0 lib/php/{ => management}/logout.php | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename lib/php/{ => management}/insert.php (100%) rename lib/php/{ => management}/logout.php (100%) diff --git a/index.php b/index.php index ffd1d75..4bfb292 100644 --- a/index.php +++ b/index.php @@ -12,7 +12,7 @@ include ( 'lib/php/login.php' ); break; case "logout": - include ( 'lib/php/logout.php' ); + include ( 'lib/php/management/logout.php' ); break; case "dashboard": include ( 'lib/php/dashboard.php' ); diff --git a/lib/php/dashboard.php b/lib/php/dashboard.php index 482a56e..68e9bca 100644 --- a/lib/php/dashboard.php +++ b/lib/php/dashboard.php @@ -8,7 +8,7 @@ include ( 'lib/php/manage.php' ); break; case "insert": - include ( 'lib/php/insert.php' ); + include ( 'lib/php/management/insert.php' ); break; default: http_response_code ( 404 ); diff --git a/lib/php/insert.php b/lib/php/management/insert.php similarity index 100% rename from lib/php/insert.php rename to lib/php/management/insert.php diff --git a/lib/php/logout.php b/lib/php/management/logout.php similarity index 100% rename from lib/php/logout.php rename to lib/php/management/logout.php