42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
class LostpwdForm extends Zend_Form
|
||
|
{
|
||
|
public function __construct($options = null)
|
||
|
{
|
||
|
parent::__construct($options);
|
||
|
$this->setName('lostpwd');
|
||
|
$email=new Zend_Form_Element_Text('email');
|
||
|
$email->setLabel('E-Mail')
|
||
|
->setRequired(true)
|
||
|
->addFilter('StringTrim')
|
||
|
->addValidator('NotEmpty')
|
||
|
->addValidator('EmailAddress');
|
||
|
|
||
|
$submit = new Zend_Form_Element_Submit('submit');
|
||
|
$submit->setLabel('重设密码');
|
||
|
$submit->setAttrib('id', 'submitbutton');
|
||
|
|
||
|
$this->addElements(array($email, $submit));
|
||
|
$this->clearDecorators();
|
||
|
$this->addDecorator('FormElements')
|
||
|
->addDecorator('HtmlTag', array('tag' => '<ul>','class'=>'loginform'))
|
||
|
->addDecorator('Form');
|
||
|
|
||
|
$this->setElementDecorators(array(
|
||
|
array('ViewHelper'),
|
||
|
array('Errors'),
|
||
|
array('Description'),
|
||
|
array('Label', array('separator'=>' ')),
|
||
|
array('HtmlTag', array('tag' => 'li', 'class'=>'element-group')),
|
||
|
));
|
||
|
|
||
|
// buttons do not need labels
|
||
|
$submit->setDecorators(array(
|
||
|
array('ViewHelper'),
|
||
|
array('Description'),
|
||
|
array('HtmlTag', array('tag' => 'li', 'class'=>'submit-group')),
|
||
|
));
|
||
|
|
||
|
}
|
||
|
}
|