summaryrefslogtreecommitdiff
path: root/app/php/components/LoginBox.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/php/components/LoginBox.php')
-rw-r--r--app/php/components/LoginBox.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/app/php/components/LoginBox.php b/app/php/components/LoginBox.php
deleted file mode 100644
index 33bbcc1..0000000
--- a/app/php/components/LoginBox.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?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
- );
- }
-
-}
-
-?>