summaryrefslogtreecommitdiff
path: root/demos/personal/protected/Pages/UserLogin.php
diff options
context:
space:
mode:
Diffstat (limited to 'demos/personal/protected/Pages/UserLogin.php')
-rw-r--r--demos/personal/protected/Pages/UserLogin.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/demos/personal/protected/Pages/UserLogin.php b/demos/personal/protected/Pages/UserLogin.php
deleted file mode 100644
index ce653179..00000000
--- a/demos/personal/protected/Pages/UserLogin.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-class UserLogin extends TPage
-{
- public function login($sender,$param)
- {
- $manager=$this->Application->getModule('auth');
- if(!$manager->login($this->Username->Text,$this->Password->Text))
- $param->IsValid=false;
- }
-
- public function onLoadComplete($param)
- {
- parent::onLoadComplete($param);
- if($this->IsPostBack && $this->IsValid)
- $this->Response->redirect($this->Application->getModule('auth')->getReturnUrl());
- }
-}
-
-?> \ No newline at end of file