3 namespace TYPO3\CMS\Fluid\ViewHelpers\Form;
44 parent::initializeArguments();
46 'disabled',
'string',
'Specifies that the input element should be disabled when the page loads'
49 'maxlength',
'int',
'The maxlength attribute of the input field (will not be validated)'
54 'errorClass',
'string',
'CSS class to set if there are errors for this view helper',
false,
'f3-form-error'
71 $this->tag->addAttribute(
'type',
'password');
72 $this->tag->addAttribute(
'name', $name);
78 return $this->tag->render();