summaryrefslogblamecommitdiffstats
path: root/application/modules/dev/forms/AuthRecoverPassword.php
blob: a1de7eaf2d1da17dfc7e61f53d0d181bcfff5d5e (plain) (tree)
1
2
3

     
                                                    
























                                                                           
<?php

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


}