]> git.openstreetmap.org Git - osqa.git/blobdiff - forum_modules/ldapauth/templates/loginform.html
OSQA-425, adding LDAP Based Authentication OSQA module to the core
[osqa.git] / forum_modules / ldapauth / templates / loginform.html
diff --git a/forum_modules/ldapauth/templates/loginform.html b/forum_modules/ldapauth/templates/loginform.html
new file mode 100644 (file)
index 0000000..a702e63
--- /dev/null
@@ -0,0 +1,28 @@
+{% load i18n %}
+
+<fieldset id='ldap_login_fs'>
+  <p><span class='big strong'>{% trans 'Enter your LDAP user name and password' %}</span><br/></p>
+  <table>
+    <tr>
+        <td>
+             <label for="id_username">{% trans 'Login name' %}</label>
+        </td>
+        <td>
+             <input id="id_username" type="text" class="required login" name="username" maxlength="30" />
+        </td>
+    </tr>
+    <tr>
+        <td>
+              <label for="id_password">{% trans 'Password' %}</label>
+        </td>
+        <td>
+             <input id="id_password" type="password" class="required login" name="password" maxlength="128" />
+        </td>
+    </tr>
+    <tr>
+        <td>
+            <input id="blogin" name="blogin" type="submit" value="{% trans 'Login' %}" />
+        </td>
+    </tr>
+  </table>
+</fieldset>