From 7570528cc84eb88a606858bed7cba166074af92e Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Tue, 17 Nov 2009 17:52:35 +0000 Subject: Added ability to create/delete/update users (tested for postgres) --- kamailio-createuser-html.lsp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 kamailio-createuser-html.lsp (limited to 'kamailio-createuser-html.lsp') 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") +%> + +

<%= html.html_escape(form.label) %>

+<% + 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) +%> -- cgit v1.2.3