| 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/fundingapplications.com/ |
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!
A request to resend your password was submitted on http://".$_SERVER['SERVER_NAME']."/forgotpassword.php
Your login information is:
Website: http://".$_SERVER['SERVER_NAME']."/login.php
Username: $email
Password: $password
If you have any questions, please don't hesitate to let us know.
Our email is: support@fundingapplications.com. Or you can visit our support page in the Members Only site by clicking on the support tab, www.fundingapplications.com/membersonly/contact.php
Again, thank you for your order and good luck to you in your funding goals!!
Sincerely,
Funding Applications
www.fundingapplications.com";
$from = "From: support@fundingapplications.com";
mail($email,"Funding Applications Password Request ".date('Y-m-d H:i:s'),$message,$from);
$status = "Email sent to $email";
}
}
$title = 'Retreive Your Password';
$body_id = 'sub';
require_once("header.php") ?>
<form method="post" action="forgotpassword.php">
<table cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="left">
<h2>Enter Your Email Address</h2>
<p>To have your password emailed to you enter your email address below:</p></font>
<div align="center">
<table id="form">
<tr>
<td class="form_top"></td>
</tr>
<tr>
<td class="form_in">
<?
if ($error !='')
{
?>
<div style='background-color:#ffffff; padding:0 20px; margin:0 0 20px 0; border-top:1px dotted #888888; border-bottom:1px dotted #888888'><p style="color:#CA440B">
<?= $error;?>
</p></div>
<?
}
?>
<?
if ($status !='')
{
?>
<div style='background-color:#ffffff; padding:0 20px; margin:0 0 20px 0; border-top:1px dotted #888888; border-bottom:1px dotted #888888'><p><?= $status; ?></p></div>
<?
}
?>
<table align="center">
<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>
<tr hieght="20">
<td> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="form_bot"></td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</form>
<? require_once("footer.php")?>