summaryrefslogtreecommitdiffstats
path: root/kamailio-createuser-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'kamailio-createuser-html.lsp')
-rw-r--r--kamailio-createuser-html.lsp15
1 files changed, 15 insertions, 0 deletions
diff --git a/kamailio-createuser-html.lsp b/kamailio-createuser-html.lsp
new file mode 100644
index 0000000..fb05750
--- /dev/null
+++ b/kamailio-createuser-html.lsp
@@ -0,0 +1,15 @@
+<% local form, viewlibrary, page_info = ...
+require("viewfunctions")
+%>
+
+<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"}
+ displayform(form, order)
+%>