summaryrefslogtreecommitdiff
path: root/ishtar/templates/registration/password_reset_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/templates/registration/password_reset_form.html')
-rw-r--r--ishtar/templates/registration/password_reset_form.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/ishtar/templates/registration/password_reset_form.html b/ishtar/templates/registration/password_reset_form.html
index ec782424f..d6fad7a0a 100644
--- a/ishtar/templates/registration/password_reset_form.html
+++ b/ishtar/templates/registration/password_reset_form.html
@@ -2,9 +2,14 @@
{% load i18n %}
{% block content %}
+<div class='form'>
<form method="post" action=".">{% csrf_token %}
- {{ form.as_p }}
+ <caption>{% trans "Reset password" %}</caption>
+ <table>
+ {{ form.as_table }}
- <input type="submit" value="{% trans 'Submit' %}" />
+ <tr><td colspan='2'><input type="submit" value="{% trans 'Submit' %}" /></td></tr>
+ </table>
</form>
+</div>
{% endblock %}