summaryrefslogtreecommitdiffstats
path: root/app/controller
diff options
context:
space:
mode:
Diffstat (limited to 'app/controller')
-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 7fafd11..693d190 100644
--- a/app/controller/auth.control.php
+++ b/app/controller/auth.control.php
@@ -21,6 +21,10 @@ class Auth extends Controller
$this->action_signup($mod);
break;
+ case "signup_submit":
+ $this->action_signup_submit($mod);
+ break;
+
default:
$this->action_default($mod);
break;
@@ -46,6 +50,12 @@ class Auth extends Controller
$mod->signup();
include "view/auth/signup.view.php";
}
+
+ function action_signup_submit($mod)
+ {
+ $mod->signupSubmit($_REQUEST['input']);
+ $this->action_signup($mod);
+ }
}
?>