fix: 📧 email field no longer shows username value on resubmit
This commit is contained in:
parent
58af1acea7
commit
e1fca230c8
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@
|
|||
</div>
|
||||
<div class="field">
|
||||
<label for="id_email">{{ form.email.label }}</label>
|
||||
<input type="email" name="email" id="id_email" value="{{ form.username.value() or "" }}" required>
|
||||
<input type="email" name="email" id="id_email" value="{{ form.email.value() or "" }}" required>
|
||||
<span class="help">{{ form.email.help_text }}</span>
|
||||
</div>
|
||||
<div class="field">
|
||||
|
|
|
|||
Loading…
Reference in a new issue