2012-06-09 17:11:28 +02:00
|
|
|
{% extends "registration/_registration_base.html" %}
|
|
|
|
{% block title %}Confirm password reset{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2012-08-08 10:46:36 +02:00
|
|
|
<h2>
|
|
|
|
Reset password
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<p class="padded">
|
|
|
|
Enter your new password below to reset your password:
|
|
|
|
</p>
|
2012-06-09 17:11:28 +02:00
|
|
|
<form method="post" action="">{% csrf_token %}
|
2012-08-08 10:46:36 +02:00
|
|
|
<table class="table">
|
2012-06-09 17:11:28 +02:00
|
|
|
{{ form.as_table }}
|
|
|
|
<tr>
|
|
|
|
<td></td>
|
|
|
|
<td><input type="submit" value="Set password" /></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|