Improve forms

This commit is contained in:
William Bouzourène 2025-01-15 16:35:33 +01:00
parent 8375504d60
commit 7d550ac23c
Signed by: bouzoure
SSH key fingerprint: SHA256:19MbXpLua4rUtk8tunMesD8KUKb91LXLHg8E/qTooww
11 changed files with 83 additions and 14 deletions

View file

@ -22,7 +22,7 @@
</div>
{% endif %}
<form id="user" method="post">
<form id="account" method="post">
<div class="row mb-3">
<label for="name" class="col-md-2 form-label">
@ -36,6 +36,8 @@
name="name"
required
value="{{ User.Name }}"
autofocus
autocomplete="off"
>
</div>
</div>
@ -52,6 +54,7 @@
name="email"
required
value="{{ User.Email }}"
autocomplete="off"
>
</div>
</div>
@ -66,6 +69,7 @@
class="form-control"
type="password"
name="password"
autocomplete="off"
>
<div class="form-text">
Laisser vide pour ne pas changer
@ -83,6 +87,7 @@
class="form-control"
type="password"
name="password-verify"
autocomplete="off"
>
</div>
</div>