<html>

<head>
<title>Login</title>
</head>

<body>

<h1>Login</h1>

<p>Please login with your username and password below:</p>

<form method="post" action="login.asp">
<table>
<tr>
	<td>Username</td>
	<td><input type="text" name="username" value=""></td>
</tr>
<tr>
	<td>Password</td>
	<td><input type="password" name="password" value=""></td>
</tr>
<tr>
	<td> </td>
	<td><input type="submit" name="submit1" value="Login"></td>
</tr>
</table>
</form>

</body>

</html>