diff options
Diffstat (limited to 'openssl-request-html.lsp')
-rw-r--r-- | openssl-request-html.lsp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/openssl-request-html.lsp b/openssl-request-html.lsp index cc0cdb3..b2b6495 100644 --- a/openssl-request-html.lsp +++ b/openssl-request-html.lsp @@ -1,12 +1,12 @@ -<? local form, viewlibrary, page_info = ... ?> -<? require("viewfunctions") ?> +<% local form, viewlibrary, page_info = ... %> +<% require("viewfunctions") %> -<? --[[ DEBUG INFORMATION +<% --[[ DEBUG INFORMATION io.write(html.cfe_unpack(form)) ---]] ?> +--]] %> -<H1><?= form.label ?></H1> -<? +<H1><%= form.label %></H1> +<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action form.value.password.type = "password" form.value.password_confirm.type = "password" @@ -14,5 +14,5 @@ io.write(html.cfe_unpack(form)) "organizationalUnitName", "OU", "commonName", "CN", "emailAddress" } local finishingorder = { "certtype", "extensions", "password", "password_confirm" } displayform(form, order, finishingorder) -?> +%> |