{% set pagetitle = "Select your identity provider"|trans %} {% extends "base.twig" %} {% block content %}

{{ pagetitle }}

{% if idplist|length == 0 %}
{{ "No identity providers found. Cannot continue." | trans }}
{% else %}

{{ "Please select the identity provider where you want to authenticate:" | trans }}

{% if rememberenabled %}
{% endif %} {% for idpentry in idplist %} {% if idpentry.entityid == preferredidp %}
{% if idpentry.iconurl is defined %}
{% endif %}
{{ idpentry.name }} {% if idpentry.description is defined and idpentry.description != idpentry.name %}
{{ idpentry.description }} {% endif %}
{% endif %} {% endfor %} {% for idpentry in idplist %} {% if idpentry.entityid != preferredidp %}
{% if idpentry.iconurl is defined %}
{% endif %}
{{ idpentry.name }} {% if idpentry.description is defined and idpentry.description != idpentry.name %}
{{ idpentry.description }} {% endif %}
{% endif %} {% endfor %}
{% endif %} {% endblock %}