summaryrefslogtreecommitdiffstats
path: root/application/forms/AuthRecoverPassword.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/forms/AuthRecoverPassword.php')
-rw-r--r--application/forms/AuthRecoverPassword.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/application/forms/AuthRecoverPassword.php b/application/forms/AuthRecoverPassword.php
deleted file mode 100644
index fc9478b..0000000
--- a/application/forms/AuthRecoverPassword.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-class Application_Form_AuthRecoverPassword extends Zend_Form
-{
-
- public function init()
- {
- $this->setName("RecoverPassword");
- $this->setMethod('post');
-
- $this->addElement('text', 'email', array(
- 'filters' => array('StringTrim'),
- 'validators' => array(
- array('StringLength', false, array(0, 30)),
- ),
- 'required' => true,
- 'label' => 'Email:',
- ));
- $this->addElement('submit', 'recoverPassword', array(
- 'required' => false,
- 'ignore' => true,
- 'label' => 'Recover Password',
- ));
- }
-
-
-}
-