{% extends "base-apply.html" %} {% load i18n wagtailcore_tags %} {% block title %}{% trans "Confirm access" %}{% endblock %} {% block body_class %}bg-white{% endblock %} {% block content %}
{% csrf_token %}

{% trans "Confirm access" %}

Signed in as {{ request.user }} ({{ request.user.email }})

{% if form.non_field_errors %}
{{ form.non_field_errors.as_text }}
{% endif %} {% for field in form %} {% include "forms/includes/field.html" %} {% endfor %}

{% blocktrans %} Tip: You are entering sudo mode. After you've performed a sudo-protected action, you'll only be asked to re-authenticate again after a few hours of inactivity. {% endblocktrans %}

{% endblock %}