{% import "macros/branding.html" as branding %} {% extends "auth/base.html" %} {% block body %}
{% if tenant.logo_url %} {{ tenant.name }} {% else %} {{ tenant.name }} {% endif %}

{% block title %}{% endblock %}

{% if error is defined %}
{{error}}
{% endif %} {% if success is defined %}
{{success}}
{% endif %} {% if not fatal_error %} {% block auth_form %} {% endblock %} {% endif %} {% if show_branding %}
{{ branding.branding() }}
{% endif %}
{% endblock %}