summaryrefslogtreecommitdiffstats
path: root/kamailio-createuser-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-11-17 17:52:35 +0000
committerTed Trask <ttrask01@yahoo.com>2009-11-17 17:52:35 +0000
commit7570528cc84eb88a606858bed7cba166074af92e (patch)
tree5758129922c55dfb0bea33cbb2c6156e73efaad6 /kamailio-createuser-html.lsp
parent5261ae2fa86ae090a2923b502646aa03c6a275a9 (diff)
downloadacf-kamailio-7570528cc84eb88a606858bed7cba166074af92e.tar.bz2
acf-kamailio-7570528cc84eb88a606858bed7cba166074af92e.tar.xz
Added ability to create/delete/update users (tested for postgres)
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)
+%>