src/cm/templates/site/register.html
changeset 0 40c8f766c9b8
child 438 fcc5e2f0befd
equal deleted inserted replaced
-1:000000000000 0:40c8f766c9b8
       
     1 {% extends "site/layout/base_workspace.html" %}
       
     2 {% load i18n %}
       
     3 {% load com %}
       
     4 
       
     5 {% block head %}
       
     6 {% endblock %}
       
     7 
       
     8 {% block title %}{% blocktrans %}Register{% endblocktrans %}{% endblock %}
       
     9 
       
    10 {% block content %}
       
    11 
       
    12 <h1 class="main_title"><a class="title" href="{% url index %}">{{ CONF.workspace_name }}</a></h1>
       
    13 
       
    14 <div id="login_container">
       
    15 
       
    16 <form id="register" enctype="multipart/form-data" class="wizard-form" action="." method="post">
       
    17 
       
    18 <div class="underline_border">
       
    19 {% blocktrans with CONF.workspace_name as wname %}{{ wname }} Registration{% endblocktrans %}
       
    20 </div>
       
    21 
       
    22 
       
    23 <table class="small_form">
       
    24     <tbody>
       
    25     {% for form in forms %}
       
    26     	{% include "site/macros/form_fields.html" %}
       
    27     {% endfor %}
       
    28     <tr>
       
    29         <td style="vertical-align: top; width: 20%; text-align:right;">
       
    30         </td>
       
    31         <td>
       
    32             <label></label>
       
    33             <input name="register" type="submit" value="Register"/>
       
    34         </td>
       
    35     </tr>
       
    36     </tbody>
       
    37 </table>
       
    38 
       
    39 </form>
       
    40 
       
    41 </div>
       
    42 
       
    43 {% endblock %}