diff options
Diffstat (limited to 'app/controller/auth.control.php')
-rw-r--r-- | app/controller/auth.control.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/controller/auth.control.php b/app/controller/auth.control.php index 9bb8349..0e970dd 100644 --- a/app/controller/auth.control.php +++ b/app/controller/auth.control.php @@ -25,6 +25,10 @@ class Auth extends Controller $this->action_signup_submit($mod); break; + case "login": + $this->action_login($mod); + break; + default: $this->action_default($mod); break; @@ -50,6 +54,12 @@ class Auth extends Controller $mod->signupSubmit($_REQUEST['input']); $this->action_signup($mod); } + + function action_login($mod) + { + $mod->login($_REQUEST['input']); + $this->action_default($mod); + } } ?> |