diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-10-28 03:15:18 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-10-28 03:15:18 +0000 |
commit | f3efbd5c0c63a4ecc4b0261f138b29a1d0a63e65 (patch) | |
tree | 070a7936b8a5b532d964bf5f05d9b1d71d01fd26 /kamailio-createuser-html.lsp | |
parent | 567e623b8285a1b93440c2aa51a00bffb92e32ab (diff) | |
download | acf-kamailio-f3efbd5c0c63a4ecc4b0261f138b29a1d0a63e65.tar.bz2 acf-kamailio-f3efbd5c0c63a4ecc4b0261f138b29a1d0a63e65.tar.xz |
Removed unneeded views by updating CFE for autoview
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) -%> |