mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-14 14:22:16 +00:00
19 lines
605 B
HTML
19 lines
605 B
HTML
{% macro text(id, name, type="text", required=False, minlength=0, value="") %}
|
|
<span class="text-input">
|
|
<label for="{{ id }}">
|
|
{{ name|title }}
|
|
{% if required %}
|
|
<span style="color: rgb(var(--secondary)) !important;">*</span>
|
|
{% endif %}
|
|
</label>
|
|
|
|
<input
|
|
type="{{ type }}"
|
|
name="{{ name }}"
|
|
id="{{ id }}"
|
|
{% if value %}value="{{ value }}"{% endif %}
|
|
{% if required %}required{% endif %}
|
|
minlength="{{ minlength }}"
|
|
>
|
|
</span>
|
|
{% endmacro %}
|