aemo_fr/templates/two_factor/_wizard_forms.html

14 lines
393 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{ 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 %}