a962aec26efb90e90319c27a3cafd82c6ca3a390
[wolnelektury.git] / src / wolnelektury / templates / registration / login.html
1 {% extends "2022/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     {% if USE_OPENID %}
28       <h3>{% trans "Sign in using:" %}</h3>
29
30       <ul class="socialaccount_providers">
31         {% include "socialaccount/snippets/provider_list.html" %}
32       </ul>
33
34       {% include "socialaccount/snippets/login_extra.html" %}
35     {% endif %}
36   </form>
37 {% endblock %}