diff options
Diffstat (limited to 'app/acf-util/password-html.lsp')
-rwxr-xr-x | app/acf-util/password-html.lsp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/acf-util/password-html.lsp b/app/acf-util/password-html.lsp index d845316..dca559d 100755 --- a/app/acf-util/password-html.lsp +++ b/app/acf-util/password-html.lsp @@ -1,16 +1,16 @@ -<? local form, viewlibrary, pageinfo = ... ?> -<? require("viewfunctions") ?> -<? +<% local form, viewlibrary, pageinfo = ... %> +<% require("viewfunctions") %> +<% --[[ DEBUG INFORMATION io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>") io.write(html.cfe_unpack(form)) io.write(html.cfe_unpack(FORM)) io.write("</span>") --]] -?> +%> -<H1><?= form.label ?></H1> -<? +<H1><%= form.label %></H1> +<% if form.value.password and form.value.password_confirm then form.value.password.type = "password" form.value.password_confirm.type = "password" @@ -21,4 +21,4 @@ io.write("</span>") end local order = { "userid", "username", "roles", "password", "password_confirm" } displayform(form, order) -?> +%> |