summaryrefslogtreecommitdiff
path: root/app/php/controls/LoginBox.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/php/controls/LoginBox.php')
-rw-r--r--app/php/controls/LoginBox.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/php/controls/LoginBox.php b/app/php/controls/LoginBox.php
new file mode 100644
index 0000000..33bbcc1
--- /dev/null
+++ b/app/php/controls/LoginBox.php
@@ -0,0 +1,23 @@
+<?php
+
+class LoginBox extends TTemplateControl {
+
+ public function loginUser($sender, $param) {
+ if ($this->Page->IsValid) {
+ $this->Response->redirect(
+ $this->Application->getModule('auth')->ReturnUrl
+ ?: $this->Service->constructUrl(NULL)
+ );
+ }
+ }
+
+ public function validatePassword($sender, $param) {
+ $param->IsValid = $this->Application->getModule('auth')->login(
+ $this->Login->Text,
+ $this->Password->Text
+ );
+ }
+
+}
+
+?>