blob: d905b373a870c0f92c7123ba128271dbf0afa504 (
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 %}Meeting Tools{% endblock %}
{% block content %}
<h1>Authentication Required</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 %}
|