Locatizations.
[wolnelektury.git] / src / wolnelektury / templates / registration / login.html
1 {% extends "base_simple.html" %}
2 {% load i18n %}
3
4 {% block settings %}
5   {% load title %}
6   {% trans 'Zaloguj się' as title %}
7   {% title title %}
8 {% endblock %}
9
10
11 {% block sbreadcrumbs %}
12   <a>{% trans "Zaloguj się" %}</a>
13 {% endblock %}
14
15 {% block stitle %}{% trans "Zaloguj się" %}{% endblock %}
16
17 {% block content %}
18   <h1>{{ title }}</h1>
19
20   <form method="post">
21     {% csrf_token %}
22     {{ form }}
23     <button>{% trans "Dalej" %}</button>
24
25     <a href="{% url 'account_reset_password' %}">{% trans "Nie pamiętasz hasła?" %}</a>
26
27     <br><br>
28     <a href="{% url 'register' %}?next={{ request.GET.next }}">{% trans "Nie masz jeszcze konta?" %}</a>
29
30     {% if USE_OPENID %}
31       <h3>{% trans "Zaloguj się używając:" %}</h3>
32
33       <ul class="socialaccount_providers">
34         {% include "socialaccount/snippets/provider_list.html" %}
35       </ul>
36
37       {% include "socialaccount/snippets/login_extra.html" %}
38     {% endif %}
39   </form>
40 {% endblock %}