| 
| Size: | 8646 | 
| Storage flags: | no_autoload,compress/gzip (32%) | 
The FormPassword view helper can be used to render a <input type="password"> HTML form input. It is meant to work with the Zend\Form\Element\Password element.
FormPassword extends from Zend\Form\View\Helper\FormInput.
Basic usage:
1 2 3 4 5 6  | use Zend\Form\Element;
$element = new Element\Password('my-password');
// Within your view...
echo $this->formPassword($element);
 | 
Output:
1  | <input type="password" name="my-password" value="">
 | 
The source code of this file is hosted on GitHub. Everyone can update and fix errors in this document with few clicks - no downloads needed.