src/cm/templates/site/user_activate.html
changeset 0 40c8f766c9b8
child 438 fcc5e2f0befd
equal deleted inserted replaced
-1:000000000000 0:40c8f766c9b8
       
     1 {% extends "site/layout/base_workspace.html" %}
       
     2 {% load com %}
       
     3 {% load i18n %}
       
     4 
       
     5 {% block head %}
       
     6 {% endblock %}
       
     7 
       
     8 {% block content %}
       
     9 
       
    10 <h1>{% blocktrans %}Activate your account{% endblocktrans %}</h1>
       
    11 <form id="user_add" enctype="multipart/form-data" class="wizard-form" action="." method="post">
       
    12 <table class="wide_form">
       
    13     <tbody>
       
    14     {% with userform as form %}
       
    15         {% include "site/macros/form_fields.html" %}
       
    16     {% endwith %}    
       
    17     
       
    18     {% with pwform as form %}
       
    19         {% include "site/macros/form_fields.html" %}
       
    20     {% endwith %}    
       
    21 
       
    22     <tr>
       
    23         <td style="vertical-align: top; width: 20%; text-align:right;">
       
    24         </td>
       
    25         <td>
       
    26             <label></label>
       
    27             <input name="save" type="submit" value="{% blocktrans %}Save{% endblocktrans %}"/>
       
    28         </td>
       
    29     </tr>
       
    30     </tbody>
       
    31 </table>
       
    32 </form>
       
    33 {% endblock %}