GameExpo23/TFR/server/templates/macros/input.html
Fluffy 300c80fcd5 Yeet useless tables
Yeet useless data paths in dockerfile
Add order into templates file
2023-06-22 13:19:00 +00:00

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 %}