summaryrefslogtreecommitdiffstats
path: root/weblog-createdatabase-html.lsp
blob: 372a98d0d8c22c58e9b24641e0e05aa493cae02d (plain)
1
2
3
4
5
6
7
8
9
10
<% local form, viewlibrary, page_info = ... %>
<% require("htmlviewfunctions") %>

<H1><%= html.html_escape(form.label) %></H1>
<% 
	form.value.password.type = "password"
	form.value.password_confirm.type = "password"
	local order = { "password", "password_confirm" }
	htmlviewfunctions.displayform(form, order, nil, page_info)
%>