CC-4283: Password Reset: Please let user input username they want to reset
-done
This commit is contained in:
parent
ffa4c131ee
commit
dc8e3da6db
4 changed files with 34 additions and 7 deletions
|
@ -20,6 +20,17 @@ class Application_Form_PasswordRestore extends Zend_Form
|
|||
'ViewHelper'
|
||||
)
|
||||
));
|
||||
|
||||
$this->addElement('text', 'username', array(
|
||||
'label' => 'Username',
|
||||
'required' => false,
|
||||
'filters' => array(
|
||||
'stringTrim',
|
||||
),
|
||||
'decorators' => array(
|
||||
'ViewHelper'
|
||||
)
|
||||
));
|
||||
|
||||
$this->addElement('submit', 'submit', array(
|
||||
'label' => 'Restore password',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue