{% extends base_template|default:"bastion/base.html" %} {% load i18n %} {% comment %} Shown when the local session ended but the provider's did not, which happens for a provider that publishes no end_session_endpoint (Google), when discovery could not be reached, and for a session that predates the connection being recorded. It says so explicitly rather than saying "signed out". Someone on a shared machine who believes they have signed out, and has not, is the whole reason this page exists instead of a redirect to the home page. The auth.logout audit record carries the same fact as context.rp_initiated. Same accessibility notes as login_failed.html: front-loaded , a real <h1>, selectable reference, no autofocus. {% endcomment %} {% block title %}{% translate "Signed out" %}{% if site_title %} | {{ site_title }}{% endif %}{% endblock %} {% block content_title %}<h1 tabindex="-1">{% translate "You are signed out of this site" %}</h1>{% endblock %} {% block breadcrumbs %}{% endblock %} {% block nav-breadcrumbs %}{% endblock %} {% block usertools %}{% endblock %} {% block nav-global %}{% endblock %} {% block nav-sidebar %}{% endblock %} {% block content %} {% if not provider_session_ended %} <div class="errornote"> <p> {% blocktranslate trimmed %} You are still signed in with your identity provider, so returning to this site may sign you straight back in without asking for a password. {% endblocktranslate %} </p> <p> {% blocktranslate trimmed %} On a shared or public computer, close every browser window to finish signing out. {% endblocktranslate %} </p> </div> {% endif %} <p> {% translate "Reference:" %} <code>{{ reference }}</code> </p> <p><a href="/">{% translate "Return to the home page" %}</a></p> {% endblock %}