cacert-webdb/pages/account/21.php

52 lines
1.7 KiB
PHP
Raw Normal View History

2004-10-16 00:28:17 +00:00
<? /*
Copyright (C) 2004 by Duane Groth <duane_at_CAcert_dot_org>
This file is part of CAcert.
CAcert has been released under the CAcert Source License
which can be found included with these source files or can
be downloaded from the internet from the following address:
http://www.cacert.org/src-lic.php
CAcert is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the License for more details.
*/ ?>
<?
2005-05-13 15:34:39 +00:00
$org = $_SESSION['_config']['row'];
if($org['id'] <= 0)
$org = $_SESSION['_config']['altrow'];
2004-10-16 00:28:17 +00:00
?>
<p>
<?=_("Please make sure the following details are correct before proceeding any further.")?>
</p>
<p>
2005-05-13 15:34:39 +00:00
<? if(is_array($_SESSION['_config']['rows']))
foreach($_SESSION['_config']['rows'] as $row) { ?>
2004-10-16 00:28:17 +00:00
<?=_("CommonName")?>: <?=$row?><br>
<? } ?>
2005-05-13 15:34:39 +00:00
<? if(is_array($_SESSION['_config']['altrows']))
foreach($_SESSION['_config']['altrows'] as $row) { ?>
<?=_("subjectAltName")?>: <?=$row?><br>
2004-10-16 00:28:17 +00:00
<? } ?>
2005-05-13 15:34:39 +00:00
<?=_("Organisation")?>: <?=$org['O']?><br>
<?=_("Org. Unit")?>: <?=$org['OU']?><br>
<?=_("Location")?>: <?=$org['L']?><br>
<?=_("State/Province")?>: <?=$org['ST']?><br>
<?=_("Country")?>: <?=$org['C']?><br>
2004-10-16 00:28:17 +00:00
2007-03-06 22:16:55 +00:00
2004-10-16 00:28:17 +00:00
<form method="post" action="account.php">
<input type="submit" name="process" value="<?=_("Submit")?>">
<input type="hidden" name="oldid" value="<?=$id?>">
2007-03-06 22:16:55 +00:00
<? if($_SESSION['profile']['admin'] == 1) { ?>
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<input type="checkbox" name="ocspcert" value="OCSPCert"/> OCSP certificate
<? } ?>
2004-10-16 00:28:17 +00:00
</form>
</p>