Improve forms
This commit is contained in:
parent
8226329b61
commit
6f3b7c6dc3
11 changed files with 83 additions and 14 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue