blob: e8122f15040c066376ea07bc219931aab21d81a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<div class='form'>
<form method="post" action=".">{% csrf_token %}
<table id='login'>
<caption>{%trans "Log in"%}</caption>
{{ form.as_table }}
<tr class='submit'><td colspan='2'><input type="submit" value="{% trans 'Log in' %}" /></td></tr>
<input type="hidden" name="next" value="{{ next }}" />
</table>
</form>
</div>
<div class='info'>
<p>{% trans "Forgot password?" %} <a href="{% url 'auth_password_reset' %}">{% trans "Reset it" %}</a></p>
<p>{% trans "Not member?" %} <a href="{% url 'registration_register' %}">{% trans "Register" %}</a></p>
</div>
{% endblock %}
|