| 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/vsa/ |
Upload File : |
<?php
/*
Copyright (c) 2007-present InnAnTech Industries
Author: Dave Guindon
Web: www.VirtualSmartAgent.com
Support: www.DaveGuindonSupport.com
Please send bug reports, suggestions and/or feedback to the support
website given above.
Virtual Smart Agent is a commercial software. Any distribution is strictly prohibited
unless a resale rights license was delivered along with this software.
*/
include('modfiles/db.php');
include('globals.php');
//get settings
$conn = mysql_connect("$dbhost", "$dblogin", "$dbpass") or die ('I cannot connect to the database.');
mysql_select_db($dbname, $conn);
$sql = "SELECT * FROM $settingsTable WHERE id='1'";
$result = mysql_query($sql, $conn);
$settings = mysql_fetch_assoc($result);
$login_message = $_GET['login_message'];
?>
<html>
<head>
<title>Virtual Smart Agent - Login</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<LINK href="style.css" type=text/css rel=stylesheet>
</head>
<body>
<p><?php echo $topheader; ?></p>
<br />
<form action="index.php" method="post">
<table width="350" border="0" align="center" cellpadding="10" cellspacing="0" bgcolor="#FFFFFF" class="small_grey_border">
<tr>
<td width="346"><div align="center"><strong><font size="5"> Admin
Login</font></strong></div></td>
</tr>
<tr>
<td> <div align="center">
<p><font color="#FF0000" face="Tahoma"><strong> <?php echo $login_message; ?>
</strong></font></p>
<table width="232" border="0" cellspacing="0" cellpadding="2">
<tr>
<td width="76" nowrap><div align="right">Username:</div></td>
<td width="148" nowrap><font face="verdana" size="2"><b>
<input name="user" class="input" maxlength="100">
</b></font></td>
</tr>
<tr>
<td><div align="right">Password:</div></td>
<td><font face="verdana" size="2"><b>
<input name="pass" type="password" class="input" maxlength=20>
</b></font></td>
</tr>
<tr>
<td colspan="2"><div align="center"><font face="verdana" size="2"><b>
<input type="submit" value="Login" name="sublogin" class="input">
</b></font></div></td>
</tr>
</table>
<p>Forget your password? ... <a href="forget.php">Go here</a></p>
</div>
</td>
</tr>
</table>
</form>
<div align="center"><?php echo $copyright; ?></div>
</body>
</html>