summaryrefslogblamecommitdiffstats
path: root/application/modules/dev/forms/AuthRecoverPassword.php
blob: 35779fc734acfd5a60494885f0216b52fd6b9d1e (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',
        ));  
    }


}