03827a07ad6c6b976f2908105229c18273fa4abb
[wolnelektury.git] / src / wolnelektury / templates / registration / register.html
1 {% extends "base_simple.html" %}
2 {% load i18n %}
3
4
5 {% block settings %}
6   {% load title %}
7   {% trans "Register" as title %}
8   {% title title %}
9 {% endblock %}
10
11
12 {% block simple-content %}
13   <form method="post">
14     {% csrf_token %}
15     {{ form.as_p }}
16     <button>{% trans "Register" %}</button>
17     <p class="helptext">{{ form.data_processing }}</p>
18
19     {% if USE_OPENID %}
20       <h3>{% trans "Sign in using:" %}</h3>
21
22       <ul class="socialaccount_providers">
23         {% include "socialaccount/snippets/provider_list.html" %}
24       </ul>
25
26       {% include "socialaccount/snippets/login_extra.html" %}
27     {% endif %}
28
29   </form>
30 {% endblock %}