summaryrefslogtreecommitdiffstats
path: root/openssl-putcacert-html.lsp
blob: 2a2cfb7f7e442279e8a313a1f3edaee3a74fd171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<? local form, viewlibrary, page_info = ... ?>
<? require("viewfunctions") ?>

<? --[[ DEBUG INFORMATION
io.write(html.cfe_unpack(form))
--]] ?>

<H1><?= form.label ?></H1>
<?
	-- 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)
?>