Final cleanup, formset was actually supposed to be fieldset.

This commit is contained in:
2011-12-04 19:23:25 +00:00
parent 8ad4634fe7
commit e2223f6702
21 changed files with 97 additions and 92 deletions

View File

@@ -1,13 +1,15 @@
{% extends "registration/registration_base.html" %}
{% block title %}Reset password{% endblock %}
{% block title %}Forgotten password{% endblock %}
{% block content %}
<p>Forgot your password? Enter your email in the form below and we'll send you
instructions for creating a new one.</p>
<div class="page-header">
<h1>Forgotten Password</h1>
</div>
<p>Forgot your password? Enter your email in the form below and we'll send you instructions for creating a new one.</p>
<form method='post' action=''>
<table>
{{ form }}
</table>
<input type='submit' value="Reset password" />
{% csrf_token %}
<fieldset>
{% include "formtools/formfield.html" with field=form.email %}
{% csrf_token %}
<input type='submit' value="Reset password" class="btn primary"/>
</fieldset>
</form>
{% endblock %}