summaryrefslogtreecommitdiffstats
path: root/application/forms/RecoverPassword.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/forms/RecoverPassword.php')
-rw-r--r--application/forms/RecoverPassword.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/application/forms/RecoverPassword.php b/application/forms/RecoverPassword.php
deleted file mode 100644
index 273b426..0000000
--- a/application/forms/RecoverPassword.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-/*
- * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
- * This program is free software distributed under the GPL version 2.
- * See http://gpl.openslx.org/
- *
- * If you have any feedback please consult http://feedback.openslx.org/ and
- * send your suggestions, praise, or complaints to feedback@openslx.org
- *
- * General information about OpenSLX can be found at http://openslx.org/
- */
-
-class Appliocation_Form_RecoverPassword 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',
- ));
- }
-
-
-}
-