{% extends 'base.html' %} {% load allauth i18n %} {% block head_title %}{% trans "Reauthenticate" %}{% endblock head_title %} {% block content %}

{% trans "Enter your password:" %}

{% url 'account_reauthenticate' as action_url %}
{% csrf_token %} {{ form.non_field_errors }} {% for field in form %}
{{ field }} {{ field.errors }}
{% endfor %} {{ redirect_field }}
{% endblock content %}