diff options
Diffstat (limited to 'openssl-request-html.lsp')
-rw-r--r-- | openssl-request-html.lsp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/openssl-request-html.lsp b/openssl-request-html.lsp index bc153a4..ea0655a 100644 --- a/openssl-request-html.lsp +++ b/openssl-request-html.lsp @@ -7,6 +7,11 @@ io.write(html.cfe_unpack(form)) <H1><?= form.label ?></H1> <? - displayform(form) + 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) ?> |