summaryrefslogtreecommitdiffstats
path: root/app/acf-util/logon-html.lsp
blob: 22deb4dfb5e7a6b8d0b3bdc6b791b3fdcd1953f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<? local form = ... ?>
<? require("viewfunctions") ?>
<? --[[
       io.write(html.cfe_unpack(form))
   --]] ?>

<h1><?= form.label ?></h1>
<?
   form.value.password.type = "password"
   local order = { "userid", "password" }
   displayform(form, order)
?>