diff options
author | Michael Tänzer <neo@nhng.de> | 2013-04-16 23:27:39 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2013-04-16 23:27:39 +0200 |
commit | a3517b52939d2ed4d77cd6594f8b199d6c25e172 (patch) | |
tree | 7dfc187ffd12d68f7b10aa4319712136c2f8470a /pages/account | |
parent | 7e9a156f8b89ac45de3f031f48809d57e8051590 (diff) | |
download | cacert-devel-a3517b52939d2ed4d77cd6594f8b199d6c25e172.tar.gz cacert-devel-a3517b52939d2ed4d77cd6594f8b199d6c25e172.tar.xz cacert-devel-a3517b52939d2ed4d77cd6594f8b199d6c25e172.zip |
bug 1017: Fix layout issues
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/6.php | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/pages/account/6.php b/pages/account/6.php index 2123e2b..879b2eb 100644 --- a/pages/account/6.php +++ b/pages/account/6.php @@ -82,22 +82,20 @@ if (array_key_exists('format', $_REQUEST)) { } } else { - showheader(_("My CAcert.org Account!")); - echo "<h3>"._("Install your certificate")."</h3>\n"; - - echo "<p><a href='account.php?id=$id&cert=$certid&install'>". + showheader(_("My CAcert.org Account!"), _("Install your certificate")); + echo '<ul class="no_indent">'; + echo "<li><a href='account.php?id=$id&cert=$certid&install'>". _("Install the certificate into your browser"). - "</a></p>\n"; + "</a></li>\n"; - echo "<p><a href='account.php?id=$id&cert=$certid&format=pem'>". - _("Download the certificate in PEM format")."</a></p>\n"; + echo "<li><a href='account.php?id=$id&cert=$certid&format=pem'>". + _("Download the certificate in PEM format")."</a></li>\n"; - echo "<p><a href='account.php?id=$id&cert=$certid&format=der'>". - _("Download the certificate in DER format")."</a></p>\n"; + echo "<li><a href='account.php?id=$id&cert=$certid&format=der'>". + _("Download the certificate in DER format")."</a></li>\n"; + echo '</ul>'; - echo "<br /><br /><br />"; - - // Allow to directly copy and paste the cert in PEM format + // Allow to directly copy and paste the cert in PEM format $crtname=escapeshellarg($row['crt_name']); $cert = `/usr/bin/openssl x509 -in $crtname -outform PEM`; echo "<pre>$cert</pre>"; |