% local form, viewlibrary, page_info = ... %>
<% require("viewfunctions") %>
<% --[[ DEBUG INFORMATION
io.write(html.cfe_unpack(form))
--]] %>
<%= html.html_escape(form.label) %>
<%
-- This is a kludge to get file upload working
form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action .. '" enctype="multipart/form-data'
form.value.ca.type="file"
form.value.password.type="password"
local order = {"ca", "password"}
displayform(form, order)
%>