blob: d6fad7a0a00187f52680b753cfee327d594c4447 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<div class='form'>
<form method="post" action=".">{% csrf_token %}
<caption>{% trans "Reset password" %}</caption>
<table>
{{ form.as_table }}
<tr><td colspan='2'><input type="submit" value="{% trans 'Submit' %}" /></td></tr>
</table>
</form>
</div>
{% endblock %}
|