blob: 072fdd59be11e7e657b9dbd51f94a21adf8917ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
|