| 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/usagrantapplications.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 Grant Applications.org.
Your login information is:
Website: http://www.usagrantapplications.org/login.php
Username: $email
Password: $password
If you have any questions, please don't hesitate to let us know.
Our email is: support@usagrantapplications.org. Or you can visit our support page in the Members Only site by clicking on the support tab, www.usagrantapplications.org/membersonly/contact.php
Again, thank you for your order and good luck to you in your funding goals!!
Sincerely,
USA Grant Applications
www.USAGrantApplications.org";
$from = "From: support@usagrantapplications.org\r\nBcc: login@nowstream.com\r\n";
#mail($email,"USA Grant Applications.org Membership Information",$message,$from);
$status = "Email sent to $email";
}
}
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>USA Grant Applications - Forgot Password</title>
<? include("header_v2.php"); ?>
<td style="width:100px;background-color:#dbd7d6;text-align:center" valign="top"></td>
<td style="width:590px;background-color:#ffffff;text-align:left;font:9pt/120% verdana;padding:10px 0px 0px 10px">
<form method="post" action="https://<?=$_SERVER['SERVER_NAME'];?>/forgotpassword.php">
<table cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="left">
<div style="padding:10px">
<p>
<strong>Welcome to USA Grant 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>
<? include("footer_v2.php"); ?>