function getLoggedInUser() { $id = person::getLoggedInId(); if ($id) { return new Person((int) $id); } else { return NULL; } }
function postLogin($p) { $success = person::auth($_POST['username'], $_POST['password']); if (!$success) { $this->redirect('login?auth=bad'); } $id = person::getLoggedInId(); $this->redirect("main"); }