You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
267 B
HTML
10 lines
267 B
HTML
10 years ago
|
{% extends 'base.html' %}
|
||
|
{% block content %}
|
||
|
<p class="lead">Select the IdP you want to use to authenticate:</p>
|
||
|
<ol>
|
||
|
{% for idp in idp_dict.keys() %}
|
||
|
<li><a href="/saml/login/{{idp}}">{{idp}}</a></li>
|
||
|
{% endfor %}
|
||
|
</ol>
|
||
|
{% endblock %}
|