diff --git a/application/controllers/auth.php b/application/controllers/auth.php index 9a06eec..7fa3275 100755 --- a/application/controllers/auth.php +++ b/application/controllers/auth.php @@ -1,11 +1,22 @@ + */ class Auth extends CI_Controller { + /** + * Shows the index page. + */ public function index() { $this->load->view('auth/login'); } + /** + * Logs the user in - or not ;-) + */ public function do_login() { echo "{success: true}"; }