summaryrefslogtreecommitdiff
path: root/templates/djangosaml2
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2012-10-04 20:20:36 +0200
committerLeif Johansson <leifj@sunet.se>2012-10-04 20:20:36 +0200
commit7351b90c74da712a7c6a636142de05cd9b3516e3 (patch)
tree3ff0fe26aa2bee51b155e211afe7edeeda9cfd6c /templates/djangosaml2
parent2a2ba3e4b819d50711accb07ce4877fa65542796 (diff)
more djangosaml2
Diffstat (limited to 'templates/djangosaml2')
-rw-r--r--templates/djangosaml2/wayf.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/djangosaml2/wayf.html b/templates/djangosaml2/wayf.html
new file mode 100644
index 0000000..d905b37
--- /dev/null
+++ b/templates/djangosaml2/wayf.html
@@ -0,0 +1,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 %} \ No newline at end of file