src/cm/templates/site/login_form.html
changeset 0 40c8f766c9b8
child 220 7d278fde2748
equal deleted inserted replaced
-1:000000000000 0:40c8f766c9b8
       
     1 {% load i18n %}
       
     2 <div id="login_container">
       
     3 
       
     4 <form id="login" enctype="multipart/form-data" class="wizard-form" action="." method="post">
       
     5 
       
     6 <div class="underline_border">
       
     7 {% blocktrans with CONF.workspace_name as wname %}{{ wname }} Login{% endblocktrans %}
       
     8 </div>
       
     9 
       
    10 
       
    11 <table class="small_form">
       
    12     <tbody>
       
    13     {% include "site/macros/form_fields.html" %}
       
    14     <tr>
       
    15         <td style="vertical-align: top; width: 20%; text-align:right;">
       
    16         </td>
       
    17         <td>
       
    18             <label></label>
       
    19             <input name="login" type="submit" value="{% blocktrans %}Login{% endblocktrans %}"/>
       
    20             {% if CONF.workspace_registration %}<a href="{% url register %}">{% blocktrans %}Register{% endblocktrans %}</a>{% endif %}
       
    21         </td>
       
    22     </tr>
       
    23     </tbody>
       
    24 </table>
       
    25 
       
    26 {% if request.GET.next %}
       
    27 <input type="hidden" name="next" value="{{ request.GET.next }}">
       
    28 {% endif %}
       
    29 
       
    30 </form>
       
    31 
       
    32 </div>