InputΒΆ
<Input name: str value: str = '' type: str = 'text' id: str | None
= None class: str | None
= None aria-label: str | None
= None placeholder: str | None
= None inputmode: Literal['none', 'text', 'decimal', 'numeric', 'tel', 'search', 'email', 'url'] = None />
Produce <input>
node.
- param name:
submitted name in the form
- param value:
submitted value in the form
- param type:
type of the control
- param id:
unique identifier of the element.
- param class:
css class for the node, defaults to
fastlife.templates.constants.Constants.INPUT_CLASS
.- param aria_label:
aria-label
- param placeholder:
brief hint to the user as to what kind of information is expected in the field.
- param inputmode:
Define a virtual keyboard layout