Web and MAC Authentication
Setup Procedure for Web/MAC Authentication
Filename: index.html
The index.html file is the first login page displayed, in which a client requesting
access to the network enters a username and password. In the index.html
skeleton file, you can customize any part of the source code except for the
lines that appear in bold. The lines in bold specify the form that processes the
username and password entered by a client.
<html>
<head>
<title>EWA User Login</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<h1><font face="Verdana, Arial, Helvetica, sans-serif">EWA User Login </font></h1>
<p><font face="Verdana, Arial, Helvetica, sans-serif">In order to access this network, you must first
log in.</font></p>
<!-- method=POST required to prevent the browser caching the URL with password -->
<form name="login" action="/EWA/loginprocess" method="post">
<table width="31%" border="1" bordercolor="#FFFFFF">
<tr>
<td height="36" width="15%">
<font face="Verdana, Arial, Helvetica, sans-serif">Username:</font></td>
<td height="36" width="85%">
<input type="text" name="user" size="25" maxlength="40">
</td>
</tr>
<tr>
<td width="15%" height="31">
<font face="Verdana, Arial, Helvetica, sans-serif">Password:</font></td>
<td width="85%" height="31">
<input type="password" name="pass" size="25" maxlength="40">
</td>
</tr>
</table>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
</body>
</html>
3-19