diff options
Diffstat (limited to 'kamailio-createuser-html.lsp')
-rw-r--r-- | kamailio-createuser-html.lsp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kamailio-createuser-html.lsp b/kamailio-createuser-html.lsp index fb05750..a3a8857 100644 --- a/kamailio-createuser-html.lsp +++ b/kamailio-createuser-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info = ... -require("viewfunctions") +require("htmlviewfunctions") %> <H1><%= html.html_escape(form.label) %></H1> @@ -11,5 +11,5 @@ require("viewfunctions") form.value.username.readonly = true end local order = {"username", "password", "password_confirm", "email_address"} - displayform(form, order) + htmlviewfunctions.displayform(form, order) %> |