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

<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)
%>