mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-28 22:03:10 +00:00
Deleting accounts
Resetting password Profile settings Fixing random shit
This commit is contained in:
parent
300c80fcd5
commit
e08b31a430
13 changed files with 317 additions and 89 deletions
|
@ -1,15 +1,19 @@
|
|||
{% macro text(id, name, type="text", required=False, minlength=0) %}
|
||||
{% 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 %}
|
||||
{% endmacro %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue