equal
deleted
inserted
replaced
|
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> |
|
30 {% endblock %} |