blob: 9eeb484d1356c959be18ae47206d05a47ad2eb66 (
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 class="form-inline" 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 class="btn btn-success" type="submit" value="Select"/>
</form>
{% endblock %}
|