summaryrefslogtreecommitdiffstats
path: root/app/acf-util/logon-html.lsp
blob: 20aa0ee072f09494b2f00b21b5a62a15cd6fc0ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<? local form = ... ?>
<? --[[
       io.write(html.cfe_unpack(form))
   --]] ?>

<? if form.errtxt ~= "" then ?>
<h1>Command Result</h1>
<p class='error'> <?= form.errtxt ?></p>
<? end ?>

<h1>Logon</h1>
<form action="logon" method="POST">
<DL>
	<DT>User id</DT>
		<DD><input class="text" type="text" name="userid" value="<?= form.value ?>"></DD>
	<DT>Password</DT>
		<DD><input class="password" type="password" name="password" value=""></DD>
	<DT><input class="submit" type="submit" name="Logon" value="Logon"></DD>
</DL>
</form>