{# Follow same pattern as Allauth here #} {% extends "account/base_entrance.html" %} {% load trans blocktrans from i18n %} {% load crispy from crispy_forms_tags %} {% block title %} {% trans "Authentication required" %} {% endblock title %} {% block content_title_text %} {% trans "Authentication required" %} {% endblock content_title_text %} {% block content_body %}

{% blocktrans trimmed %} You must be authenticated in order to access this site, please provide a password to continue. {% endblocktrans %}

{% csrf_token %} {{ form|crispy }}
{% endblock content_body %}