From a81047876c6c2e8261c53403e692b8acf7226b99 Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Wed, 24 Jun 2015 20:29:29 +0200 Subject: [PATCH] New index page --- index.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 index.php diff --git a/index.php b/index.php new file mode 100644 index 0000000..f9a4eb4 --- /dev/null +++ b/index.php @@ -0,0 +1,29 @@ +root . 'lib/utils.inc.php'; + + $util = new Utils; + + if ($util->isLoggedIn()) { + $util->setHeading('Quarantine Administration'); + echo $util->getHeader(); + echo $util->getHeading(); + echo "

+ Quarantine Administration +

"; + echo $util->getFooter(); + } else { + header('Location: auth.php'); + } +?> + + + + +Whitelist/Blacklist administration + + + + + \ No newline at end of file -- 2.39.2