fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix api
[wolnelektury.git]
/
wolnelektury
/
templates
/
registration
/
login.html
1
{% extends "simple_base.html" %}
2
{% load i18n %}
3
4
{% block "title" %}{% trans "Login to Wolne Lektury" %}{% endblock %}
5
6
{% block "body" %}
7
<h1>{% trans "Login to Wolne Lektury" %}</h1>
8
9
<form method="POST">
10
{% csrf_token %}
11
<table>
12
{{ form.as_table }}
13
<tr><td></td><td>
14
<input type="submit" value='{% trans "Login" %}' />
15
</td></tr>
16
</table>
17
</form>
18
19
{% endblock %}