| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/usa_sites/americasgotfunding.com/ |
Upload File : |
<?
if(empty($_REQUEST['user']) || empty($_REQUEST['pass'])) {
header('Location: index.php');
}
require_once($_SERVER['DOCUMENT_ROOT'].'/assets/includes/php_header.php');
require_once($_SERVER['DOCUMENT_ROOT'].'/membersonly/assets/includes/AuthLCAPI.php');
$error='';
$message='';
if (!empty($_POST)) {
//bill user and set next bill date.
}
$title = $_SITE_NAME." : Reactivate Account";
include('assets/includes/header2.php'); ?>
<!--INFO AREA + BOX MIDDLE-->
<div style="background:url(assets/images/box_middle.png) repeat-y; width:1000px; float:left">
<!--CONTENT-->
<div id="one_column">
<center>
<h1>Welcome to <?=$_SITE_NAME;?>.com!</h1>
<p style="margin-bottom:30px;">There was a problem with your billing information we have on file. Please update your information to reactivate your account.</p>
<?
if($error) {
echo "<p width='243px' class='error' style='color:red;'>$error</p>";
}
else if($message) {
echo "<p width='243px' class='success' style='color:green;'>$message</p>";
}
?>
</center>
<center>
<form method="post" action="https://<?=$_SERVER['SERVER_NAME'];?>/reactivate.php">
<div class="table_container" style="border:3px double #ADCCD6;">
<table cellpadding="2" cellspacing="2" style="margin:0px auto;text-align:left;" >
<tr height="20">
<td colspan="4"> </td>
</tr>
<tr>
<td class="q" style="text-align:right;">Credit Card Number:</td>
<td class="a"><input type="text" name="cc_num" size="20" maxlength="16" value="<?= ($cc_num != '') ? $cc_num : NULL; ?>" /></td>
<td>
<img src="/assets/images/creditcards.jpg" /> <img src="/assets/images/logo_ccDiscover.gif" />
</td>
</tr>
<tr>
<td class="q" style="text-align:right;">Exp:</td>
<td>
<select name="cc_month">
<option value="MM">MM</option>
<?
for($i = 1; $i <= 12; $i++) {
$month = sprintf('%02s',$i);
$selected = (strcmp($month, $cc_month) == 0) ? "selected" : NULL;
echo "\n<option value='$month' $selected>$month</option>";
}
?>
</select>
<select name="cc_year">
<option value="YYYY">YYYY</option>
<?
$years = range(date('Y'), date('Y')+20);
foreach($years as $year) {
$selected = (strcmp($year, $cc_year) == 0) ? "selected" : NULL;
echo "\n<option value='$year' $selected>$year</option>";
}
?>
</select>
</td>
<td> </td>
</tr>
<tr>
<td class="q" style="text-align:right;">3 Digit Verification Code<br />on back of Card:</td>
<td class="a"><input size=5 maxlength="4" name="cc_cvv" value="<?php echo $cc_cvv ?>" /></td>
<td colspan="2"> </td>
</tr>
<tr>
<td>
<input type="hidden" name="user" value="<?= $_REQUEST['user']; ?>" />
<input type="hidden" name="pass" value="<?= $_REQUEST['pass']; ?>" />
</td>
<td colspan="3"><input type="submit" value="Update" /></td>
</tr>
<tr height="20">
<td colspan="4"> </td>
</tr>
</table>
</form>
</div> <!--end regform div-->
</center>
</div>
<div style="clear:both;"></div>
</div>
<!--INCLUDE FOOTER-->
<?php include('assets/includes/footer.php'); ?>