summaryrefslogtreecommitdiff
path: root/templates/djangosaml2/wayf.html
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2012-04-05 15:41:13 +0200
committerLeif Johansson <leifj@sunet.se>2012-04-05 15:41:13 +0200
commite0ec9593a22f9d462b4fb8cc08a236184970e692 (patch)
tree036925caf8ece1cd8a882ae5fe6555bf7d396d07 /templates/djangosaml2/wayf.html
parent183dde3697a371a926c0bdc9dd8bac940c8f98ca (diff)
local wayf
Diffstat (limited to 'templates/djangosaml2/wayf.html')
-rw-r--r--templates/djangosaml2/wayf.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/djangosaml2/wayf.html b/templates/djangosaml2/wayf.html
new file mode 100644
index 0000000..60b07f0
--- /dev/null
+++ b/templates/djangosaml2/wayf.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+ </head>
+ <body>
+ <h1>Login!</h1>
+ <p>Please select your <strong>Identity Provider</strong> from the following list:</p>
+ <ul>
+ {% for url, idp in available_idps %}
+ <li><a href="{% url djangosaml2.views.login %}?idp={{ url }}{% if came_from %}&next={{ came_from }}{% endif %}">{{ idp[0] }}</a></li>
+ {% endfor %}
+ </ul>
+ </body>
+</html>