html_input
Returns an HTML input tag. The filter’s input will be the name
attribute for the HTML tag. The filter accepts an extra argument which is tht HTML input’s type (such as text
, textarea
, checkbox
).
All extra arguments will be parsed as HTML attributes.
Input:
{{ "input_field_name" | html_input: "text", class: "form-textbox" }}
Output:
<input type="text" name="input_field_name" class="form-textbox">
Note that it might be useful to use this filter in combination with the form_input_name as follows:
Input:
{{ "Name" | form_input_name | html_input: "checkbox" }}
Output:
<input type="checkbox" name="form_message[content][name]">
, multiple selections available,
Related content
form_input_name
form_input_name
More like this
search_form
search_form
More like this
authentication_form_input_name
authentication_form_input_name
More like this
edit_text_inline
edit_text_inline
More like this
register_form_field
register_form_field
More like this
img_tag
img_tag
More like this