| 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 : |
<?
require_once($_SERVER['DOCUMENT_ROOT'].'/assets/includes/php_header.php');
require_once($_SERVER['DOCUMENT_ROOT'].'/membersonly/assets/includes/AuthLCAPI.php');
$error='';
if(isset($_REQUEST['user']) && isset($_REQUEST['pass'])) {
//User Authentication Object
$auth = new AuthLCAPI();
$user=trim($_REQUEST['user']);
$pass=trim($_REQUEST['pass']);
if (!$auth->login($user,$pass))
{
if ($auth->timedout == true)
{
$error = 'There was a problem contacting the login server.';
}
else
{
$error = 'The username or password was incorrect.';
}
} else {
echo '<pre>'.print_r($_SESSION,true).'</pre>';
}
}
else if (isset($_GET['logout']) && $_GET['logout'] == 1) {
//User Authentication Object
$auth = new AuthLCAPI();
$auth->logout();
$message = "You have successfully logged out.";
}
$title = $_SITE_NAME." : Member Login";
?>
<!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><?= $title;?></title>
<link rel="stylesheet" type="text/css" href="/assets/css/styles.css" />
</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>
<form method="post" action="login_new.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 login to your account, just input your username and password below and click on "Login".</p></font>
</div>
<div align="center">
<? if ($error !=''):?>
<span style="color:red;">
<?=$error;?>
</span>
<? endif;?>
<table>
<tr>
<td>
User Name:
</td>
<td>
<input type="text" size="30" name="user" />
</td>
</tr>
<tr>
<td>
Password:
</td>
<td>
<input type="password" size="30" name="pass" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Login" name="login" style="cursor:pointer" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<a href="forgotpassword.php">Forgot your Login / Password?</a>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
<input type="hidden" name="submitted" value="submitted">
</form>
</td>
</tr>
</table>
</div>
</div>
<? include_once("footer.php"); ?>