48 lines
2.1 KiB
PHP
48 lines
2.1 KiB
PHP
<? /*
|
|
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.
|
|
*/ ?>
|
|
<? if($_SESSION['profile']['tverify'] <= 0) { echo _("You don't have access to this area."); } else { ?>
|
|
<?
|
|
$uid = intval($_GET['uid']);
|
|
$query = "select * from `tverify` where `id`='$uid' and `modified`=0";
|
|
$res = mysql_query($query);
|
|
if(mysql_num_rows($res) > 0)
|
|
{
|
|
$row = mysql_fetch_assoc($res);
|
|
$memid = $row['memid'];
|
|
$query = "select sum(`points`) as `points` from `notary` where `to`='$memid'";
|
|
$notary = mysql_fetch_assoc(mysql_query($query));
|
|
$query = "select * from `users` where `id`='$memid'";
|
|
$user = mysql_fetch_assoc(mysql_query($query));
|
|
?>
|
|
<?=_("Request Details")?>:<br>
|
|
<?=_("Name on file")?>: <?=$user['fname']." ".$user['mname']." ".$user['lname']." ".$user['suffix']?><br>
|
|
<?=_("Primary email address")?>: <?=$user['email']." (".$user['id'].")"?><br>
|
|
<?=_("Certificate Subject")?>: <?=$row['CN']?><br>
|
|
<?=_("Notary URL")?>: <a href="<?=$row['URL']?>"><?=$row['URL']?></a><br>
|
|
<?=_("Photo ID URL")?>: <a href="/account.php?id=51&photoid=<?=$row['id']?>"><?=_("Here")?></a><br>
|
|
<?=_("Current Points")?>: <?=intval($notary['points'])?><br>
|
|
<?=_("Date of Birth")?>: <?=$user['dob']?> (YYYY-MM-DD)<br>
|
|
|
|
<br>
|
|
<form method="post" action="account.php">
|
|
<?=_("Comment")?>: <input type="text" name="comment"><br>
|
|
<input type="submit" name="agree" value="<?=_("I agree with this Application")?>">
|
|
<input type="submit" name="disagree" value="<?=_("I don't agree with this Application")?>">
|
|
<input type="hidden" name="oldid" value="<?=$_GET['id']?>">
|
|
<input type="hidden" name="uid" value="<?=$uid?>">
|
|
</form>
|
|
<? } else { ?>
|
|
<?=_("Unable to locate a valid request for that UID.")?>
|
|
<? } } ?>
|