diff options
author | Michael Tänzer <neo@nhng.de> | 2014-02-04 15:58:59 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-02-04 15:58:59 +0100 |
commit | aa325469783363f865665ec7e8cfe24e1157059f (patch) | |
tree | 4955d6de9ef5893aa5789a3907aeb39ce14b2d28 /pages/account/6.php | |
parent | f8191d4deddadd7a542007af471157183aa6660e (diff) | |
download | cacert-devel-aa325469783363f865665ec7e8cfe24e1157059f.tar.gz cacert-devel-aa325469783363f865665ec7e8cfe24e1157059f.tar.xz cacert-devel-aa325469783363f865665ec7e8cfe24e1157059f.zip |
Source code taken from cacert-20140115.tar.bz2
Diffstat (limited to 'pages/account/6.php')
-rw-r--r-- | pages/account/6.php | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/pages/account/6.php b/pages/account/6.php index 0054b7a..8455499 100644 --- a/pages/account/6.php +++ b/pages/account/6.php @@ -115,7 +115,6 @@ if (array_key_exists('format', $_REQUEST)) { echo "<pre>$cert</pre>"; ?> -<form method="post" action="account.php"> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> <tr> <td colspan="2" class="title"><?=_("Information about the certificate")?></td> @@ -133,16 +132,6 @@ if (array_key_exists('format', $_REQUEST)) { $row['revoke'] = _("Not Revoked"); ?> <tr> - <td class="DataTD"><?=_("Renew/Revoke/Delete")?></td> -<? if($verified != _("Pending") && $verified != _("Revoked")) { ?> - <td class="DataTD"><input type="checkbox" name="revokeid[<?=$row['id']?>]" ></td> -<? } else if($verified != _("Revoked")) { ?> - <td class="DataTD"><input type="checkbox" name="delid[<?=$row['id']?>]"></td> -<? } else { ?> - <td class="DataTD"> </td> -<? } ?> - </tr> - <tr> <td class="DataTD"><?=_("Status")?></td> <td class="DataTD"><?=$verified?></td> </tr> @@ -165,21 +154,14 @@ if (array_key_exists('format', $_REQUEST)) { <tr> <td class="DataTD"><?=_("Login")?></td> <td class="DataTD"> - <input type="checkbox" name="disablelogin" value="1" <?=$row['disablelogin']?"":"checked='checked'"?>/> + <input type="checkbox" name="disablelogin" disabled="disabled" value="1" <?=$row['disablelogin']?"":"checked='checked'"?>/> </td> </tr> <tr> <td class="DataTD"><?=_("Comment")?></td> - <td class="DataTD"><input type="text" name="description" maxlength="100" size=100 value="<?=htmlspecialchars($row['description'])?>"></td> - </tr> - <tr> - <td class="DataTD" colspan="2"><input type="submit" name="change" value="<?=_("Change settings")?>"> </td> + <td class="DataTD"><?=htmlspecialchars($row['description'])?></td> </tr> </table> -<input type="hidden" name="oldid" value="6"> -<input type="hidden" name="certid" value="<?=$certid?>"> -</form> - <? showfooter(); exit; |