Merge branch 'master' of github.com:fnp/wolnelektury
[wolnelektury.git] / apps / wolnelektury_core / 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 {% csrf_token %}
7 <ol>
8     <div id="id_{% if form_prefix %}{{ form_prefix }}-{% endif %}__all__"></div>
9     {{ form.as_ul }}
10     <li><a href="{% url account_reset_password %}">{% trans "Forgot Password?" %}</a></li>
11     <li><input type="submit" value="{{ submit }}"/></li>
12 </ol>
13 </form>
14
15 <h1>{% trans "Sign in using:" %}</h1>
16
17 <ul class="socialaccount_providers">
18 {% include "socialaccount/snippets/provider_list.html" %}
19 </ul>
20
21 {% include "socialaccount/snippets/login_extra.html" %}
22
23 {% block extra %}
24 {% endblock %}