summaryrefslogtreecommitdiffstats
path: root/password-edit-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-10-13 20:51:39 +0000
committerTed Trask <ttrask01@yahoo.com>2008-10-13 20:51:39 +0000
commit4329b7b6da85440f537da8e4c1b9da1150912df3 (patch)
tree7733780e543cd6e738405f72114f94ffc8ecee6a /password-edit-html.lsp
parent303266d5fc5c1463a2aeecb2b4cc801b81ddfb06 (diff)
downloadacf-alpine-baselayout-4329b7b6da85440f537da8e4c1b9da1150912df3.tar.bz2
acf-alpine-baselayout-4329b7b6da85440f537da8e4c1b9da1150912df3.tar.xz
Added alpine-baselayout hostname and password edit.
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@1556 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'password-edit-html.lsp')
-rw-r--r--password-edit-html.lsp12
1 files changed, 12 insertions, 0 deletions
diff --git a/password-edit-html.lsp b/password-edit-html.lsp
new file mode 100644
index 0000000..d9582bf
--- /dev/null
+++ b/password-edit-html.lsp
@@ -0,0 +1,12 @@
+<% local form, viewlibrary, page_info = ...
+require("viewfunctions")
+%>
+
+<H1><%= form.label %></H1>
+<%
+ form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
+ form.value.password.type = "password"
+ form.value.password_confirm.type = "password"
+ local order = {"user", "password"}
+ displayform(form, order)
+%>