<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <hide@address.com> All Rights Reserved.
*
* 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; either version 2
* of the License, or (at your option) any later version.
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************************************************
*
* Authors: Liran Tal <hide@address.com>
*
* Credits to the implementation of captcha are due to G.Sujith Kumar of codewalkers
*
*********************************************************************************************************
*/
include('library/config_read.php');
$successMsg = $configValues['CONFIG_PAYPAL_SUCCESS_MSG_PRE'];
$refresh = true;
if (isset($_GET['txnId'])) {
// txnId variable is set, let's check it against the database
include('library/opendb.php');
$txnId = $_GET['txnId'];
$sql = "SELECT txnId, username, payment_status FROM ".$configValues['CONFIG_DB_TBL_DALOBILLINGPAYPAL'].
" WHERE txnId='".$dbSocket->escapeSimple($txnId)."'";
$res = $dbSocket->query($sql);
$row = $res->fetchRow();
if ( ($row[0] == $txnId) && ($row[2] == "Completed") ) {
$successMsg = "Your user PIN is: <b>$row[1]</b> <br/><br/>".$configValues['CONFIG_PAYPAL_SUCCESS_MSG_POST'];
$refresh = false;
}
include('library/closedb.php');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
if ($refresh == true)
echo '<meta http-equiv="refresh" content="5">';
?>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>User Sign-Up</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<script src="library/javascript/common.js" type="text/javascript"></script>
<body>
<div id="wrap">
<div class="header"><p>Hotspot<span>Login</span><sup>
By <a href="http://templatefusion.org">TemplateFusion.org</a></sup></p>
</div>
<div id="navigation">
<ul class="glossymenu">
<li><a href="index.php" class="current"><b>Home</b></a></li>
<li><a href="#"><b>Services</b></a></li>
<li><a href="#"><b>About Us</b></a></li>
<li><a href="#"><b>Contact</b></a></li>
</ul>
</div>
<div id="body">
<h1>Sign-Up</h1>
<p>
<center>
<?php
echo "<font color='blue'><b>".$configValues['CONFIG_PAYPAL_SUCCESS_MSG_HEADER']."</b></font>";
echo $successMsg;
?>
<br/><br/>
<br/><br/>
</center>
</p>
<h1>Hotspot References</h1>
<a href="#"><img src="images/portfolio1.jpg" alt="portfolio1" /></a>
<a href="#"><img src="images/portfolio2.jpg" alt="portfolio2" /></a>
<a href="#"><img src="images/portfolio3.jpg" alt="portfolio3" /></a>
<a href="#"><img src="images/portfolio4.jpg" alt="portfolio4" /></a>
</div>
<div id="footer">Enginx©2008 All Rights Reserved • Enginx and daloRADIUS Hotspot Systems <br/>
Design by <a href="http://templatefusion.org">TemplateFusion</a>
</div>
</div>
</body>
</html>