Initial commit
This commit is contained in:
commit
793bb6a488
182 changed files with 17153 additions and 0 deletions
13
templates/two_factor/_wizard_forms.html
Normal file
13
templates/two_factor/_wizard_forms.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{{ wizard.management_form }}
|
||||
<table class="mb-3">
|
||||
{% for field in form.visible_fields %}
|
||||
<tr><th>{{ field.label_tag }}</th>
|
||||
<td>{{ field.errors }}{{ field }}
|
||||
{% if field.name == 'password' %} <a href="{% url 'password_reset' %}">Mot de passe oublié ?</a>{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% for hidden in form.hidden_fields %}
|
||||
{{ hidden }}
|
||||
{% endfor %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue