oidc-fastapi-test/src/oidc_test/templates/non_compliant_logout.html

18 lines
715 B
HTML
Raw Normal View History

2025-01-09 23:41:32 +01:00
{% extends "base.html" %}
{% block content %}
<h2>Warning</h2>
<p>
You are logged out from the application, but the browser still has the
authorisation to log in again without asking for credentials.
</p>
<p>
2025-01-19 14:54:08 +01:00
This is because {{ oidc_provider.name }} does not provide "end_session_endpoint" in its metadata
(see: <a href="{{ oidc_provider._server_metadata_url }}">{{ oidc_provider._server_metadata_url }}</a>).
2025-01-09 23:41:32 +01:00
</p>
<p>
2025-01-10 19:03:09 +01:00
You can just also go back to the <a href="{{ home_url }}">application home page</a>, but
2025-01-19 14:54:08 +01:00
it recommended to go to the <a href="{{ oidc_provider.server_metadata['issuer'] }}">OIDC provider's site</a>
2025-01-10 19:03:09 +01:00
and log out explicitely from there.
2025-01-09 23:41:32 +01:00
</p>
{% endblock %}