Make logging in mandatory.

This commit is contained in:
2016-09-02 11:16:01 +02:00
parent bfcbe5aa2e
commit 3587447cc0
8 changed files with 60 additions and 57 deletions

View File

@@ -13,10 +13,7 @@ class Login extends HTMLController
// No need to log in twice, dear heart!
if (Registry::get('user')->isLoggedIn())
{
if (Registry::get('user')->isAdmin())
header('Location: ' . BASEURL . '/admin/');
else
header('Location: ' . BASEURL . '/');
header('Location: ' . BASEURL . '/');
exit;
}
@@ -41,7 +38,7 @@ class Login extends HTMLController
$login_error = true;
}
parent::__construct('Log in');
parent::__construct('Log in - ' . SITE_TITLE);
$this->page->appendStylesheet(BASEURL . '/css/admin.css');
$form = new LogInForm('Log in');
if ($login_error)