src/cm/templates/site/login_form.html
changeset 0 40c8f766c9b8
child 220 7d278fde2748
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/templates/site/login_form.html	Mon Nov 23 15:14:29 2009 +0100
@@ -0,0 +1,32 @@
+{% load i18n %}
+<div id="login_container">
+
+<form id="login" enctype="multipart/form-data" class="wizard-form" action="." method="post">
+
+<div class="underline_border">
+{% blocktrans with CONF.workspace_name as wname %}{{ wname }} Login{% endblocktrans %}
+</div>
+
+
+<table class="small_form">
+    <tbody>
+    {% include "site/macros/form_fields.html" %}
+    <tr>
+        <td style="vertical-align: top; width: 20%; text-align:right;">
+        </td>
+        <td>
+            <label></label>
+            <input name="login" type="submit" value="{% blocktrans %}Login{% endblocktrans %}"/>
+            {% if CONF.workspace_registration %}<a href="{% url register %}">{% blocktrans %}Register{% endblocktrans %}</a>{% endif %}
+        </td>
+    </tr>
+    </tbody>
+</table>
+
+{% if request.GET.next %}
+<input type="hidden" name="next" value="{{ request.GET.next }}">
+{% endif %}
+
+</form>
+
+</div>
\ No newline at end of file