| author | raph |
| Wed, 24 Mar 2010 16:19:07 +0100 | |
| changeset 229 | f6ae685b3097 |
| parent 225 | 67e1a89d6bca |
| child 436 | 83b032cbf471 |
| permissions | -rw-r--r-- |
| 220 | 1 |
{% extends "site/layout/base_workspace.html" %} |
2 |
{% load com %} |
|
3 |
{% load i18n %} |
|
4 |
||
5 |
{% block title %} |
|
|
225
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
6 |
{% blocktrans %}Reset my password{% endblocktrans %} |
| 220 | 7 |
{% endblock %} |
8 |
||
9 |
{% block head %} |
|
10 |
{% endblock %} |
|
11 |
||
12 |
{% block content %} |
|
13 |
||
|
225
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
14 |
<h1>{% blocktrans %}Reset my password{% endblocktrans %}</h1> |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
15 |
|
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
16 |
{% if form %} |
| 220 | 17 |
<form id="profile" enctype="multipart/form-data" class="wizard-form" action="." method="post"> |
|
225
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
18 |
|
| 220 | 19 |
<table class="wide_form"> |
20 |
<tbody> |
|
21 |
{% include "site/macros/form_fields.html" %} |
|
22 |
<tr> |
|
23 |
<td style="vertical-align: top; width: 20%; text-align:right;"> |
|
24 |
</td> |
|
25 |
<td> |
|
26 |
<label></label> |
|
|
225
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
27 |
<input name="remind" type="submit" value="{% blocktrans %}Reset my password{% endblocktrans %}"/> |
| 220 | 28 |
</td> |
29 |
</tr> |
|
30 |
</tbody> |
|
31 |
</table> |
|
32 |
</form> |
|
|
225
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
33 |
{% else %} |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
34 |
<center> |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
35 |
{% blocktrans %}This link is invalid.{% endblocktrans %} |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
36 |
|
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
37 |
|
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
38 |
<br /> |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
39 |
|
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
40 |
<a href="{% url forgot-pw %}">{% blocktrans %}Forgot password?{% endblocktrans %}</a> |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
41 |
|
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
42 |
</center> |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
43 |
|
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
44 |
<br /> |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
45 |
<br /> |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
46 |
<br /> |
|
67e1a89d6bca
refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
220
diff
changeset
|
47 |
{% endif %} |
| 220 | 48 |
{% endblock %} |