summaryrefslogtreecommitdiffstats
path: root/app/acf-util/password-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-04-19 12:46:20 +0000
committerTed Trask <ttrask01@yahoo.com>2012-04-19 12:46:20 +0000
commitb729270c2e5135cf1e0063d16df34350af95cdf6 (patch)
tree63db9f0e2d6bb8c2644fa631408bddd4f98ba710 /app/acf-util/password-html.lsp
parent8e27cd0b719015f206e4d64355d045ff22ee096f (diff)
downloadacf-core-b729270c2e5135cf1e0063d16df34350af95cdf6.tar.bz2
acf-core-b729270c2e5135cf1e0063d16df34350af95cdf6.tar.xz
Updated password to remove redirect_to_referrer and password-html view
Diffstat (limited to 'app/acf-util/password-html.lsp')
-rw-r--r--app/acf-util/password-html.lsp16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/acf-util/password-html.lsp b/app/acf-util/password-html.lsp
deleted file mode 100644
index bc50fb7..0000000
--- a/app/acf-util/password-html.lsp
+++ /dev/null
@@ -1,16 +0,0 @@
-<% local form, viewlibrary, pageinfo = ... %>
-<% require("htmlviewfunctions") %>
-
-<H1><%= html.html_escape(form.label) %></H1>
-<%
- if form.value.password and form.value.password_confirm then
- form.value.password.type = "password"
- form.value.password_confirm.type = "password"
- end
- -- If not in newuser action, disable userid
- if pageinfo.action ~= "newuser" then
- form.value.userid.readonly = true
- end
- local order = { "userid", "username", "roles", "password", "password_confirm" }
- htmlviewfunctions.displayform(form, order)
-%>