
Code (from view source):
Code: Select all
<!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" />
<link rel="stylesheet" rev="stylesheet" href="http://localhost/pos_sale/css/login.css" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Ultimate Video Game Connection POS - Login</title>
<script src="http://localhost/pos_sale/js/jquery-1.2.6.min.js" type="text/javascript" language="javascript" charset="UTF-8"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("#login_form input:first").focus();
});
</script>
</head>
<body>
<h1>Ultimate Video Game Connection -- Point Of Sale System</h1>
<img src="http://www.powerupvideogames.com/pos_sale/images/login_header.jpg" width="539" height="83" alt="log in header" /><Br />
<br />
<form action="http://localhost/pos_sale/index.php/login" method="post"><table class="outer">
<tr>
<td>
<div id="container">
<div id="top">
Login </div>
<div id="login_form">
<div id="welcome_message">
Welcome to the PHP Point Of Sale System. To continue, please login using your username and password below. </div>
<div class="form_field_label">Username: </div>
<div class="form_field">
<input type="text" name="username" value="" size="20" /> </div>
<div class="form_field_label">Password: </div>
<div class="form_field">
<input type="password" name="password" value="" size="20" />
</div>
<div id="submit_button">
<input type="submit" name="loginButton" value="Go" /> </div>
</div>
</div>
</td>
</tr>
</table>
</form></body>
</html>
Uploaded with ImageShack.us
Code:
Code: Select all
<!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" />
<link rel="stylesheet" rev="stylesheet" href="http://powerupvideogames.com/pos_sale/css/login.css" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>PHP Point Of Sale Login</title>
<script src="http://powerupvideogames.com/pos_sale/js/jquery-1.2.6.min.js" type="text/javascript" language="javascript" charset="UTF-8"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("#login_form input:first").focus();
});
</script>
</head>
<body>
<h1>PHP Point Of Sale 11.2</h1>
<form action="http://powerupvideogames.com/pos_sale/index.php/login" method="post"><div id="container">
<div id="top">
Login </div>
<div id="login_form">
<div id="welcome_message">
Welcome to the PHP Point Of Sale System. To continue, please login using your username and password below. </div>
<div class="form_field_label">Username: </div>
<div class="form_field">
<input type="text" name="username" value="" size="20" /> </div>
<div class="form_field_label">Password: </div>
<div class="form_field">
<input type="password" name="password" value="" size="20" />
</div>
<div id="submit_button">
<input type="submit" name="loginButton" value="Go" /> </div>
</div>
</div>
</form></body>
</html>