summaryrefslogtreecommitdiffstats
path: root/openssl-checkenvironment-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'openssl-checkenvironment-html.lsp')
-rw-r--r--openssl-checkenvironment-html.lsp18
1 files changed, 8 insertions, 10 deletions
diff --git a/openssl-checkenvironment-html.lsp b/openssl-checkenvironment-html.lsp
index 2e4f9c4..3475bbc 100644
--- a/openssl-checkenvironment-html.lsp
+++ b/openssl-checkenvironment-html.lsp
@@ -2,16 +2,14 @@
<% htmlviewfunctions = require("htmlviewfunctions") %>
<% html = require("acf.html") %>
-<H1><%= html.html_escape(form.label) %></H1>
-<% if form.value.status.errtxt then
+<h1><%= html.html_escape(form.label) %></h1>
+<%
+if form.value.status.errtxt then
form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
htmlviewfunctions.displayformstart(form)
-else %>
- <DL>
-<% end %>
-<% htmlviewfunctions.displayitem(form.value.status) %>
-<% if form.value.status.errtxt then
+end
+htmlviewfunctions.displayitem(form.value.status)
+if form.value.status.errtxt then
htmlviewfunctions.displayformend(form)
-else %>
- </DL>
-<% end %>
+end
+%>