e3d4eee63f03b39d050fa5753a44d9fc0493b680
[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 'Sign In' as title %}
7   {% title title %}
8 {% endblock %}
9
10
11 {% block sbreadcrumbs %}
12   <a>Zaloguj się</a>
13 {% endblock %}
14
15 {% block stitle %}Zaloguj się{% endblock %}
16
17 {% block content %}
18   <h1>{{ title }}</h1>
19
20   <form method="post">
21     {% csrf_token %}
22     {{ form }}
23     <button>Dalej</button>
24
25     <a href="{% url 'account_reset_password' %}">{% trans "Forgot Password?" %}</a>
26
27     <br><br>
28     <a href="{% url 'register' %}?next={{ request.GET.next }}">Nie masz jeszcze konta?</a>
29
30     {% if USE_OPENID %}
31       <h3>{% trans "Sign in using:" %}</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 %}