diff options
Diffstat (limited to 'kamailio-createuser-html.lsp')
-rw-r--r-- | kamailio-createuser-html.lsp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/kamailio-createuser-html.lsp b/kamailio-createuser-html.lsp deleted file mode 100644 index b83f2b1..0000000 --- a/kamailio-createuser-html.lsp +++ /dev/null @@ -1,16 +0,0 @@ -<% local form, viewlibrary, page_info = ... -require("htmlviewfunctions") -html = require("acf.html") -%> - -<H1><%= html.html_escape(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" - if page_info.action == "updateuser" then - form.value.username.readonly = true - end - local order = {"username", "password", "password_confirm", "email_address"} - htmlviewfunctions.displayform(form, order) -%> |