{% extends "sp/base.html" %} {% block content %}

Service Provider

{% if identity %}

You are signed in. The Identity Provider released the following.

NameID: {{ identity.name_id }}
NameID format: {{ identity.name_id_format }}
Issuing IdP: {{ identity.idp_entity_id }}
Authn context: {{ identity.authn_context }}
{% if identity.session_index %}
Session index: {{ identity.session_index }}
{% endif %}

Released attributes

{% if identity.attributes %} {% for a in identity.attributes %} {% endfor %}
FriendlyNameNameValue(s)
{{ a.friendly_name }} {{ a.name }} {% for v in a.values %}
{{ v }}
{% endfor %}
{% else %}

The IdP released no attributes.

{% endif %}

Log out

{% else %}
Entity ID: {{ cfg.entity_id }}
Metadata: {{ cfg.metadata_url }}
ACS: {{ cfg.acs_url }} (HTTP-POST)
IdP selection: {% if cfg.idp_entity_id %}fixed: {{ cfg.idp_entity_id }}{% else %}discovery service{% endif %}

IdP metadata resolution

Discovery service: {% if cfg.idp_entity_id %}— (fixed IdP){% elif cfg.discovery_url %}{{ cfg.discovery_url }}{% else %}not configured{% endif %}
MDQ service: {% if mdq_url %}{{ mdq_url }} (signature-verified){% else %}disabled{% endif %}
Local metadata files: {{ file_idp_count }} IdP(s) (trusted as provided)

Log in (choose your Identity Provider)

{% endif %} {% endblock %}