| author | Production Moz <dev@sopinspace.com> |
| Fri, 18 May 2012 00:07:32 +0200 | |
| changeset 437 | dec07877fd39 |
| parent 436 | 83b032cbf471 |
| child 438 | fcc5e2f0befd |
| permissions | -rw-r--r-- |
| 220 | 1 |
{% extends "site/layout/base_workspace.html" %} |
2 |
{% load com %} |
|
3 |
{% load i18n %} |
|
4 |
||
5 |
{% block title %} |
|
6 |
{% blocktrans %}Reset your password{% endblocktrans %} |
|
7 |
{% endblock %} |
|
8 |
||
9 |
{% block head %} |
|
10 |
{% endblock %} |
|
11 |
||
12 |
{% block content %} |
|
13 |
||
14 |
<h1>{% blocktrans %}Reset your password{% endblocktrans %}</h1> |
|
15 |
<form id="profile" enctype="multipart/form-data" class="wizard-form" action="." method="post"> |
|
16 |
<table class="wide_form"> |
|
17 |
<tbody> |
|
18 |
{% include "site/macros/form_fields.html" %} |
|
19 |
<tr> |
|
20 |
<td style="vertical-align: top; width: 20%; text-align:right;"> |
|
21 |
</td> |
|
22 |
<td> |
|
23 |
<label></label> |
|
24 |
<input name="reset" type="submit" value="{% blocktrans %}Reset your password{% endblocktrans %}"/> |
|
25 |
</td> |
|
26 |
</tr> |
|
27 |
</tbody> |
|
28 |
</table> |
|
29 |
</form> |
|
|
436
83b032cbf471
Avoids HTTP 403 on reset password, seehttps://docs.djangoproject.com/en/dev/ref/contrib/csrf/#ref-contrib-csrf.
Production Moz <dev@sopinspace.com>
parents:
220
diff
changeset
|
30 |
{% endblock %} |