| 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/usagrantapplication.org/mobile/ |
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!";
}
else
{
$message = "Hello!
Thank you for your recent membership to USA Funding Applications.com.
Your login information is:
Website: https://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, usafundingapplications.org/contact.php
Again, thank you for your order and good luck to you in your funding goals!!
Sincerely,
USA Funding Applications
usafundingapplications.org";
$from = "From: support@usafundingapplications.org\r\n";
mail($email,"USA Funding Applications.com Membership Information",$message,$from);
$status = "Email sent to $email";
}
}
$title = 'Forgot Password';
$body_class = 'forgot';
require_once('header.php');
?>
<div class="main">
<div class="main_">
<form style="width:90%; margin-left:0" 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 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 class="loginform">
<tr>
<td>
Email Address
</td>
<td>
<input type="text" class="input_text" name="email" />
</td>
</tr>
<tr>
<td></td>
<td>
<input style="margin:10px 0 30px" class="submit" type="submit" value="Submit" name="submitted" style="cursor:pointer" />
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</form>
</div>
</div>
<? include("footer.php"); ?>