summaryrefslogtreecommitdiffstats
path: root/openssl-request-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-05-20 20:56:05 +0000
committerTed Trask <ttrask01@yahoo.com>2008-05-20 20:56:05 +0000
commitf67066bd64784cb5182d6ded1847bcdd09a77d32 (patch)
treec332c805622794c407a8b0d09fb21f774f086497 /openssl-request-html.lsp
parentaf360b084b8b5c787a0141cba65191d13e2a4aa4 (diff)
downloadacf-openssl-f67066bd64784cb5182d6ded1847bcdd09a77d32.tar.bz2
acf-openssl-f67066bd64784cb5182d6ded1847bcdd09a77d32.tar.xz
Continuing to work on openssl. Not done yet.
git-svn-id: svn://svn.alpinelinux.org/acf/openssl/trunk@1127 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'openssl-request-html.lsp')
-rw-r--r--openssl-request-html.lsp7
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)
?>