blob: 91b6f35abc68553700f8af84a60e86eeba544894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "base.html" %}
{% block headline %}Login{% endblock %}
{% block title %}COIP{% endblock %}
{% block main %}
<h1>Authentication Required</h1>
<p>In order to proceed you need to identify yourself to the group service...</p>
<p>Please select your <strong>Identity Provider</strong> from the following list:</p>
<form action="{% url djangosaml2.views.login %}" method="GET">
<select id="idp" name="idp">
{% for url, idp in available_idps %}
<option value="{{url}}">{{idp.0}}</option>
{% endfor %}
</select>
<input type="submit" value="Select"/>
</form>
{% endblock %}
|