|
220
|
1 |
{% extends "site/layout/base_workspace.html" %} |
|
|
2 |
{% load com %} |
|
|
3 |
{% load i18n %} |
|
|
4 |
|
|
|
5 |
{% block title %} |
|
|
6 |
{% blocktrans %}Forgot password?{% endblocktrans %} |
|
|
7 |
{% endblock %} |
|
|
8 |
|
|
|
9 |
{% block head %} |
|
|
10 |
{% endblock %} |
|
|
11 |
|
|
|
12 |
{% block content %} |
|
|
13 |
|
|
|
14 |
<h1>{% blocktrans %}Forgot 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="remind" type="submit" value="{% blocktrans %}Remind my password{% endblocktrans %}"/> |
|
|
25 |
</td> |
|
|
26 |
</tr> |
|
|
27 |
</tbody> |
|
|
28 |
</table> |
|
|
29 |
</form> |
|
|
30 |
{% endblock %} |