blob: c1b4500373b7b1a302a487c25a87117c2815c53f (
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.cmdresult then ?>
<h1>Command Result</h1>
<p class='error'> <?= form.cmdresult ?></p>
<? end ?>
<h1>Logon</h1>
<form action="logon" method="POST">
<DL>
<DT>User id</DT>
<DD><input class="text" type="text" name="userid" 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>
|