summaryrefslogtreecommitdiffstats
path: root/application/forms/AuthLogin.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/forms/AuthLogin.php')
-rw-r--r--application/forms/AuthLogin.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/application/forms/AuthLogin.php b/application/forms/AuthLogin.php
deleted file mode 100644
index adffa29..0000000
--- a/application/forms/AuthLogin.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-
-class Application_Form_AuthLogin extends Zend_Form
-{
-
- public function init()
- {
- $this->setName("Login");
- $this->setMethod('post');
-
- $this->addElement('text', 'email', array(
- 'filters' => array('StringTrim', 'StringToLower'),
- 'validators' => array(
- array('StringLength', false, array(0, 50)),
- ),
- 'required' => true,
- 'label' => 'E-Mail:',
- ));
-
- $this->addElement('password', 'password', array(
- 'filters' => array('StringTrim'),
- 'validators' => array(
- array('StringLength', false, array(0, 50)),
- ),
- 'required' => true,
- 'label' => 'Password:',
- ));
-
- $this->addElement('submit', 'login', array(
- 'required' => false,
- 'ignore' => true,
- 'label' => 'Login',
- ));
- }
-
-
-}
-