minimal allauth support
[wolnelektury.git] / wolnelektury / templates / auth / login_register.html
1 {% extends "ajaxable/form.html" %}
2 {% load i18n %}
3
4 {% block extra %}
5
6 <h2>{% trans "or join accounts:" %}</h2>
7
8 <ul class="socialauth">
9 {% include "socialaccount/snippets/provider_list.html" %}
10 </ul>
11
12
13 <h1>{% trans "or register" %}:</h1>
14
15 <form action="{% url register %}" method="post" accept-charset="utf-8"
16         class="cuteform hidelabels">
17 <ol>
18     <div id="id_register-__all__"></div>
19     {{ register_form.as_ul }}
20     <li><input type="submit" value="{{ register_submit }}"/></li>
21 </ol>
22 </form>
23
24
25 {% endblock %}