summaryrefslogblamecommitdiffstats
path: root/application/modules/user/forms/RecoverPassword.php
blob: 90feb87cfde5bce56cbbca0c40c88a6c3f524878 (plain) (tree)



























                                                                     
<?php

class user_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 Password',
		));
	}


}