summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/acf-util/logon-html.lsp17
-rw-r--r--lib/Makefile1
-rw-r--r--www/static/static.css2
3 files changed, 9 insertions, 11 deletions
diff --git a/app/acf-util/logon-html.lsp b/app/acf-util/logon-html.lsp
index cdac2bf..aaa90cb 100644
--- a/app/acf-util/logon-html.lsp
+++ b/app/acf-util/logon-html.lsp
@@ -3,17 +3,14 @@
<form action="<?= form.option.script .. form.option.prefix ..
form.option.controller .. "/" .. form.option.action ?>" method="POST">
-<table>
<? local myform = form.value
for k,v in pairs(myform) do ?>
-<tr><td><?= v.name ?></td><td>
-<? if v.type == "submit" then ?>
- <input type="submit" name="<?= v.name ?>" value="Logon">
-<? else ?>
- <input type="text" name="<?= v.name ?>">
- <font color=red><?= v.errtxt ?></font>
+ <DT><?= v.name ?></DT>
+ <? if v.type == "submit" then ?>
+ <DD><input class="submit" type="submit" name="<?= v.name ?>" value="Logon"></DD>
+ <? else ?>
+ <DD><input class="text" type="text" name="<?= v.name ?>">
+ <font color=red><?= v.errtxt ?></font></DD>
+ <? end ?>
<? end ?>
-</td></tr>
-<? end ?>
-</table>
</form>
diff --git a/lib/Makefile b/lib/Makefile
index 3311d68..141bdbb 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -4,6 +4,7 @@ LIB_DIST=fs.lua\
html.lua\
join.lua\
date.lua\
+ debugs.lua\
format.lua\
menubuilder.lua\
pidof.lua\
diff --git a/www/static/static.css b/www/static/static.css
index f91f1fd..eebf9ae 100644
--- a/www/static/static.css
+++ b/www/static/static.css
@@ -337,7 +337,7 @@ hr {
border-bottom: 1px solid #cacaca;
background: #eee;
}
-#wrapper dd .text {
+#wrapper .text {
width: 245px;
border-right: 1px solid #cacaca;
border-bottom: 1px solid #cacaca;