oidc-fastapi-test/src/oidc_test/templates/non_compliant_logout.html
phil 5b70d4bbea
Some checks failed
/ build (push) Failing after 14s
/ test (push) Successful in 5s
Fix non complient logout
2025-01-19 14:54:08 +01:00

17 lines
715 B
HTML

{% 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>
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>).
</p>
<p>
You can just also go back to the <a href="{{ home_url }}">application home page</a>, but
it recommended to go to the <a href="{{ oidc_provider.server_metadata['issuer'] }}">OIDC provider's site</a>
and log out explicitely from there.
</p>
{% endblock %}