equal
deleted
inserted
replaced
|
1 {% extends "site/layout/base_workspace.html" %} |
|
2 {% load i18n %} |
|
3 {% load com %} |
|
4 |
|
5 {% block head %} |
|
6 {% endblock %} |
|
7 |
|
8 {% block content %} |
|
9 |
|
10 <h1>{% blocktrans %}Activate your account{% endblocktrans %}</h1> |
|
11 |
|
12 <form id="activate" enctype="multipart/form-data" class="wizard-form" action="." method="post"> |
|
13 <table class="wide_form"> |
|
14 <tbody> |
|
15 {% for form in forms %} |
|
16 {% include "site/macros/form_fields.html" %} |
|
17 {% endfor %} |
|
18 <tr> |
|
19 <td style="vertical-align: top; width: 20%; text-align:right;"> |
|
20 </td> |
|
21 <td> |
|
22 <label></label> |
|
23 <input name="activate" type="submit" value="{% blocktrans %}Activate{% endblocktrans %}"/> |
|
24 </td> |
|
25 </tr> |
|
26 </tbody> |
|
27 </table> |
|
28 </form> |
|
29 {% endblock %} |