workaround for django ticket 17111; cover in api fix
[wolnelektury.git] / wolnelektury / templates / auth / login.html
1 {% load i18n %}
2 <h1>{{ title }}</h1>
3
4 <form action="{{ request.get_full_path }}" method="post" accept-charset="utf-8"
5         class="cuteform{% if placeholdize %} hidelabels{% endif %}">
6 <ol>
7     <div id="id_{% if form_prefix %}{{ form_prefix }}-{% endif %}__all__"></div>
8     {{ form.as_ul }}
9     <li><a href="{% url account_reset_password %}">{% trans "Forgot Password?" %}</a></li>
10     <li><input type="submit" value="{{ submit }}"/></li>
11 </ol>
12 </form>
13
14 <h1>{% trans "Sign in using:" %}</h1>
15
16 <ul class="socialaccount_providers">
17 {% include "socialaccount/snippets/provider_list.html" %}
18 </ul>
19
20 {% include "socialaccount/snippets/login_extra.html" %}
21
22 {% block extra %}
23 {% endblock %}