diff options
-rw-r--r-- | src/controllers/AuthPage.class.php (renamed from src/controllers/Auth.class.php) | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/controllers/Auth.class.php b/src/controllers/AuthPage.class.php index 86bd83f..127bc1f 100644 --- a/src/controllers/Auth.class.php +++ b/src/controllers/AuthPage.class.php @@ -1,8 +1,8 @@ <?php -Router::register('auth', 'Auth'); +Router::register('auth', 'AuthPage'); -class Auth extends Controller { +class AuthPage extends Controller { public function index($routed, $remainder) { // So if $_POST['action'] isn't set, it will trip on '', which // is great, so we don't have to handle GET and PUT separately. @@ -22,7 +22,7 @@ class Auth extends Controller { if ( isset($_POST['username']) && isset($_POST['password'])) { $username = $_POST['username']; $password = $_POST['password']; - $login = $mm->login($username, $password); + $login = Login::login($username, $password); } $vars = array(); @@ -36,17 +36,16 @@ class Auth extends Controller { $this->showView('auth/login', $vars); } private function logout() { - global $mm; - $mm->logout(); + Login::logout(); $this->showView('auth/logout'); } private function maybe_login() { global $mm; - $uid = $mm->isLoggedIn(); + $uid = Login::isLoggedIn(); if ($uid===false) { $this->login(); } else { - $username = $mm->getUsername($uid); + $username = $mm->database()->getUsername($uid); $this->showView('auth/index', array('username'=>$username)); } |