| 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/usafundingapplications.org/ |
Upload File : |
<?php
error_reporting(E_ALL ^ E_NOTICE);
if (isset($_POST['submitted']))
{
require_once('inc/AuthLCAPI.php');
$Auth=New AuthLCAPI;
$email=htmlspecialchars($_POST['email']);
$password = $Auth->retrieve_password($email);
if (strcmp($password,"")==0)
{
$error = "Account not found!";
} elseif($password=='wait_for_billing') {
$error = "Your account is not yet active.";
}
else
{
$message = "Hello!
Thank you for your recent membership to USA Funding Applications.org.
Your login information is:
Website: http://www.usafundingapplications.org/login.php
Username: $email
Password: $password
If you have any questions, please don't hesitate to let us know.
Our email is: support@usafundingapplications.org. Or you can visit our support page in the Members Only site by clicking on the support tab, www.usafundingapplications.org/membersonly/contact.php
Again, thank you for your order and good luck to you in your funding goals!!
Sincerely,
USA Funding Applications
www.USAFundingApplications.org";
$from = "From: support@usafundingapplications.org\r\n";
#mail($email,"USA Funding Applications.org Membership Information",$message,$from);
$status = "Email sent to $email";
}
}
?>
<? include_once("{$_SERVER["DOCUMENT_ROOT"]}/header.php"); ?>
</head>
<body>
<div id="size">
<div id="logo"></div>
<div id="text">
<div id="text_">
<div style="margin-left: 32px;margin-right:32px;">
<table cellpadding="2" cellspacing="0" border="0">
<tr>
<td style="width:590px;background-color:#ffffff;text-align:left;font:9pt/120% verdana;padding:10px 0px 0px 10px">
<form method="post" action="forgotpassword.php">
<table cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="left">
<div style="padding:10px">
<p>
<strong>Welcome to USA Funding Applications!</strong>
</p>
<p>To have your password emailed to you enter your email address below:</p></font>
</div>
<div align="center">
<?
if ($error !='')
{
?>
<span style="color:red;">
<?= $error;?>
</span>
<?
}
?>
<?
if ($status !='')
{
?>
<span><?= $status; ?></span>
<?
}
?>
<table>
<tr>
<td>
Email Address
</td>
<td>
<input type="text" size="30" name="email" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Submit" name="submitted" style="cursor:pointer" />
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</div>
</div>
<? include_once("footer.php"); ?>