GameExpo23/TFR/server/templates/macros/input.html
Fluffy e08b31a430 Deleting accounts
Resetting password
Profile settings
Fixing random shit
2023-06-22 17:31:36 +00:00

19 lines
580 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 }}"
value="{{ value }}"
{% if required %}required{% endif %}
minlength="{{ minlength }}"
>
</span>
{% endmacro %}