Attention
TYPO3 v9 has reached its end-of-life September 30th, 2021 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.
You can order Extended Long Term Support (ELTS) here: TYPO3 ELTS.
form.password¶
ViewHelper which creates a simple Password Text Box <input type="password">
.
Examples¶
Example:
<f:form.password name="myPassword" />
Output:
<input type="password" name="myPassword" value="default value" />
Arguments¶
additionalAttributes¶
- DataType
mixed
- Required
false
- Description
Additional tag attributes. They will be added directly to the resulting HTML tag.
data¶
- DataType
mixed
- Required
false
- Description
Additional data-* attributes. They will each be added with a "data-" prefix.
name¶
- DataType
string
- Required
false
- Description
Name of input tag
value¶
- DataType
mixed
- Required
false
- Description
Value of input tag
property¶
- DataType
string
- Required
false
- Description
Name of Object Property. If used in conjunction with <f:form object="...">, "name" and "value" properties will be ignored.
disabled¶
- DataType
string
- Required
false
- Description
Specifies that the input element should be disabled when the page loads
maxlength¶
- DataType
mixed
- Required
false
- Description
The maxlength attribute of the input field (will not be validated)
placeholder¶
- DataType
string
- Required
false
- Description
The placeholder of the textfield
readonly¶
- DataType
string
- Required
false
- Description
The readonly attribute of the input field
size¶
- DataType
mixed
- Required
false
- Description
The size of the input field
errorClass¶
- DataType
string
- Default
'f3-form-error'
- Required
false
- Description
CSS class to set if there are errors for this ViewHelper
class¶
- DataType
string
- Required
false
- Description
CSS class(es) for this element
dir¶
- DataType
string
- Required
false
- Description
Text direction for this HTML element. Allowed strings: "ltr" (left to right), "rtl" (right to left)
id¶
- DataType
string
- Required
false
- Description
Unique (in this file) identifier for this HTML element.
lang¶
- DataType
string
- Required
false
- Description
Language for this element. Use short names specified in RFC 1766
style¶
- DataType
string
- Required
false
- Description
Individual CSS styles for this element
title¶
- DataType
string
- Required
false
- Description
Tooltip text of element
accesskey¶
- DataType
string
- Required
false
- Description
Keyboard shortcut to access this element
tabindex¶
- DataType
integer
- Required
false
- Description
Specifies the tab order of this element
onclick¶
- DataType
string
- Required
false
- Description
JavaScript evaluated for the onclick event