nicer social auth
[wolnelektury.git] / wolnelektury / templates / openid / login.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load ajaxable_tags %}
4
5
6 {% block titleextra %}{% trans "OpenID Sign In" %}{% endblock %}
7
8
9 {% block body %}
10
11 <h1>{% trans 'OpenID Sign In' %}</h1>
12
13
14 <form class="cuteform hidelabels" method="post" action="{% url openid_login %}">
15 <ul>
16         {% csrf_token %}
17         {% with form|placeholdize as f %}
18         {{ f.as_ul }}
19     {% endwith %}
20     <li><input type="submit" value='{% trans "Login" %}' /></li>
21 </ul>
22 </form>
23
24 {% endblock %}