- Added librarian as a submodule.
[wolnelektury.git] / wolnelektury / templates / auth / login.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block title %}{% trans "Sign in" %} / {% trans "Register on"%} WolneLektury.pl{% endblock %}
5
6 {% block body %}
7     <h1>{% trans "Sign in" %} / {% trans "Register"%}</h1>
8     <form action="." method="get" accept-charset="utf-8" id="search-form">
9         <p><li>{{ search_form.q }} <input type="submit" value="{% trans "Search" %}" /></li> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
10     </form>
11     <form method="post" action="." id="login-form" class="cuteform">
12         <h2>{% trans "Sign in" %}</h2>
13         <ol>
14             {{ form.as_ul }}
15             <li><input type="submit" value="{% trans "Sign in" %}" /></li>
16         </ol>
17         <p><input type="hidden" name="next" value="{{ next }}" /></p>
18     </form>
19
20     <form action="." method="post" accept-charset="utf-8" id="registration-form">
21         <h2>{% trans "Register" %}</h2>
22
23         <p><input type="submit" value="{% trans "Register" %}"/></p>
24     </form>
25 {% endblock %}