{% extends 'rp_base.html' %} {% load i18n %} {% load static %} {% block centered_container %}
{% csrf_token %}

{% trans "User attributes" %}

{% for attribute, value in oidc_rp_user_attrs.items %}
{{ attribute }}:
{{ value }}
{% endfor %}
Log out Verify Token (Introspection)
{% if rt_expiration == 0 %}

{% trans "Warning" %}:

{% trans 'To enable revocable long sessions you must set OIDCFED_ACR_PROFILES in settingslocal.py of the Relying Party' %} OIDCFED_ACR_PROFILES=["https://www.spid.gov.it/SpidL2","https://www.spid.gov.it/SpidL1"]

{% else %}

ACCESS TOKEN

{% trans "The" %} access token {{ rt_jti }}
{% trans "expires in" %} {{ at_expiration }}

REFRESH TOKEN {% trans "Extend Session" %}

{% trans "The" %} Refresh Token {{ rt_jti }}
{% trans "expires in" %} {{ rt_expiration }}

{% endif %} {% endblock %}