{# allauth/layouts/base.html — used by allauth's built-in non-overridden templates (TOTP setup, WebAuthn management, recovery code generation, etc.). This is a standalone layout that ships with dj_auth. If you want allauth's internal pages to match your project's custom base.html, override this file in your own project's templates directory, e.g.: # myproject/templates/allauth/layouts/base.html {% extends "base.html" %} That way TOTP setup, passkey management, etc. will inherit your branding. #} {% load i18n %} {% block head_title %}My App{% endblock %} {% block extra_head %}{% endblock %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% block content %}{% endblock %}
{% block extra_body %}{% endblock %}