diff options
Diffstat (limited to 'openssl-request-html.lsp')
-rw-r--r-- | openssl-request-html.lsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openssl-request-html.lsp b/openssl-request-html.lsp index ff27023..348ad23 100644 --- a/openssl-request-html.lsp +++ b/openssl-request-html.lsp @@ -8,11 +8,11 @@ io.write(html.cfe_unpack(form)) <H1><?= form.label ?></H1> <? form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action - local order = { "countryName", "stateOrProvinceName", "localityName", "organizationName", - "organizationalUnitName", "commonName", "emailAddress", "certtype", - "password", "password_confirm" } form.value.password.type = "password" form.value.password_confirm.type = "password" - displayform(form, order) + local order = { "countryName", "C", "stateOrProvinceName", "ST", "localityName", "L", "organizationName", "O", + "organizationalUnitName", "OU", "commonName", "CN", "emailAddress" } + local finishingorder = { "certtype", "password", "password_confirm" } + displayform(form, order, finishingorder) ?> |