mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-22 11:18:52 +00:00
19 lines
748 B
Twig
19 lines
748 B
Twig
{% apply replace({"\n\t": ' ', "\t": '', "\n": ''}) %}
|
|
<input
|
|
{% if CLASS %}class="{{ CLASS }}" {% endif %}
|
|
{% if ID %}id="{{ ID }}" {% endif %}
|
|
{% for attribute, attribute_value in DATA %}
|
|
data-{{ attribute|e }}="{{ attribute_value|e('html_attr') }}"
|
|
{% endfor %}
|
|
type="{{ TYPE }}"
|
|
name="{{ NAME }}"
|
|
{% if SIZE %}size="{{ SIZE }}" {% endif %}
|
|
{% if MAXLENGTH %}maxlength="{{ MAXLENGTH }}" {% endif %}
|
|
{% if MIN %}min="{{ MIN }}" {% endif %}
|
|
{% if MAX %}max="{{ MAX }}" {% endif %}
|
|
{% if STEP %}step="{{ STEP }}" {% endif %}
|
|
{% if TYPE == 'password' %}autocomplete="off" {% endif %}
|
|
{% if CHECKED %}checked="checked" {% endif %}
|
|
{% if DISABLED %}disabled="disabled" {% endif %}
|
|
value="{{ VALUE }}">
|
|
{% endapply %}
|