summaryrefslogtreecommitdiff
path: root/swat/login.esp
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-07-23 09:05:34 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:29:58 -0500
commit23924170cc1db85fecf21e0bfebf4d7b4ac42c25 (patch)
treebb92d3e689f89ce5e00ab380fdcbeeb3ec92a1e8 /swat/login.esp
parent66526f5e4a9aba59d20a70829e920e9a4c3cc610 (diff)
downloadsamba-23924170cc1db85fecf21e0bfebf4d7b4ac42c25.tar.gz
samba-23924170cc1db85fecf21e0bfebf4d7b4ac42c25.tar.bz2
samba-23924170cc1db85fecf21e0bfebf4d7b4ac42c25.zip
r8720: split form object out to separate include file, and make it a real
object, with a display() method (This used to be commit c45c4e335ed5da1e2e43ffcb9e8d6c32678faa3c)
Diffstat (limited to 'swat/login.esp')
-rw-r--r--swat/login.esp3
1 files changed, 2 insertions, 1 deletions
diff --git a/swat/login.esp b/swat/login.esp
index 67fd45f8c0..ae9a358243 100644
--- a/swat/login.esp
+++ b/swat/login.esp
@@ -1,5 +1,6 @@
<% page_header("plain", "SWAT Login", "");
libinclude("auth.js");
+ include("/scripting/forms.js");
if (request['SESSION_EXPIRED'] == "True") {
write("<b>Your session has expired - please authenticate again<br /></b>\n");
@@ -16,7 +17,7 @@ f.element[2].type = "select";
f.element[2].list = getDomainList();
f.submit[0] = "Login";
-display_form(f);
+f.display();
%>
<%