summaryrefslogtreecommitdiffstats
path: root/app/controller/auth.control.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-02-01 19:33:57 -0500
committerMalf Furious <m@lfurio.us>2016-02-01 19:33:57 -0500
commitfaa6ca0b2e9430d2f9d689aab583a7f881ed03bf (patch)
treeb85e40a6be971bcaceb17e527fe2243937b9765a /app/controller/auth.control.php
parentc776b36fd884808435dd1208f0dd9a57216b3927 (diff)
downloadscrott-faa6ca0b2e9430d2f9d689aab583a7f881ed03bf.tar.gz
scrott-faa6ca0b2e9430d2f9d689aab583a7f881ed03bf.zip
Implement 'login' action on Auth MVC
Finished initial functionality for Auth MVC by implementing the login feature
Diffstat (limited to 'app/controller/auth.control.php')
-rw-r--r--app/controller/auth.control.php10
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);
+ }
}
?>