/*
LibreSSL - CAcert web application
Copyright (C) 2004-2008 CAcert Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ ?>
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 = intval($row['memid']);
$query2 = "select * from `tverify-vote` where `tverify`='$uid' and `memid`='".intval($_SESSION['profile']['id'])."'";
$rc2 = mysql_num_rows(mysql_query($query2));
if($rc2 > 0)
{
showheader(_("My CAcert.org Account!"));
echo _("You have already voted on this request.");
showfooter();
exit;
}
$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));
$tobe = 50 - $notary['points'];
if($row['URL'] != '' && $row['photoid'] != '')
$tobe = 150 - $notary['points'];
else if($row['URL'] != '')
$tobe = 90 - $notary['points'];
if(intval($tobe) <= 0)
$tobe = 0;
?>
=_("Request Details")?>:
=_("Name on file")?>: =$user['fname']." ".$user['mname']." ".$user['lname']." ".$user['suffix']?>
=_("Primary email address")?>: =$user['email']." (".$user['id'].")"?>
=_("Certificate Subject")?>: =$row['CN']?>
if($row['URL'] != '') { ?>=_("Notary URL")?>: =$row['URL']?>
} ?>
if($row['photoid'] != '') { ?>=_("Photo ID URL")?>: =_("Here")?>
} ?>
=_("Current Points")?>: =intval($notary['points'])?>
=_("Potential Points")?>: =intval($tobe)?>
=_("Date of Birth")?>: =$user['dob']?> (YYYY-MM-DD)