blob: d2b29caea300294aabb139c06636e959b454d096 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block headline %}Login{% endblock %}
{% block title %}COIP{% endblock %}
{% block main %}
<h1>Login!</h1>
<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 %}
|