..
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 | {% extends 'blog/partials/base.html' %} {% block content %}
<h1 style="margin-top: 30px">Reset your Password</h1>
<p>
Enter a new password for your account. Your password must be at least 8
characters long.
</p>
<hr />
<form method="post">
<input
type="hidden"
name="csrfmiddlewaretoken"
value="{{ csrf_token }}"
style="display: none"
/>
<table id="resetpass_form">
{{ form.as_table }}
</table>
<br />
<input type="submit" value="Reset password" class="button button-special" />
</form>
<br /><br />
{% for message in messages %} {% if 'passwordReset' in message.tags %}
<p><small class="success">{{ message.message }}</small></p>
{% endif %} {% endfor %} {% endblock content %}
|
|