summaryrefslogtreecommitdiff
path: root/templates/djangosaml2
diff options
context:
space:
mode:
Diffstat (limited to 'templates/djangosaml2')
-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>