mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-29 06:03:11 +00:00
15 lines
No EOL
403 B
HTML
15 lines
No EOL
403 B
HTML
{% macro text(id, name, type="text", required=False, minlength=0) %}
|
|
<span class="text-input">
|
|
<label for="{{ id }}">
|
|
{{ name|title }}
|
|
</label>
|
|
|
|
<input
|
|
type="{{ type }}"
|
|
name="{{ name }}"
|
|
id="{{ id }}"
|
|
{% if required %}required{% endif %}
|
|
minlength="{{ minlength }}"
|
|
>
|
|
</span>
|
|
{% endmacro %} |