mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-23 14:49:31 +00:00
Final cleanup, formset was actually supposed to be fieldset.
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user