Moved project files to wolnelektury directory.
[wolnelektury.git] / wolnelektury / templates / auth / login.html
1 {% extends "base.html" %}
2
3 {% block title %}Zaloguj / Zarejestruj się w WolneLektury.pl{% endblock %}
4
5 {% block body %}
6     <h1>Zaloguj się / Załóż konto</h1>
7     <form action="." method="get" accept-charset="utf-8" id="search-form">
8         <p><li>{{ search_form.q }} <input type="submit" value="Szukaj" /></li> <strong>lub</strong> <a href="{% url main_page %}">wróć do strony głównej</a></p>
9     </form>
10     <form method="post" action="." id="login-form" class="cuteform">
11         <h2>Zaloguj się</h2>
12         <ol>
13             {{ form.as_ul }}
14             <li><input type="submit" value="Zaloguj się" /></li>
15         </ol>
16         <p><input type="hidden" name="next" value="{{ next }}" /></p>
17     </form>
18     
19     <form action="." method="post" accept-charset="utf-8" id="registration-form">
20         <h2>Załóż konto</h2>
21
22         <p><input type="submit" value="Załóż konto"/></p>
23     </form>
24 {% endblock %}