Web and MAC Authentication
Setup Procedure for Web/MAC Authentication
Filename: reject_unauthvlan.html
<html>
<head>
<title>EWA User Login</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT>
var interval = "";
var i = <!- ESI(WAUTHREDIRECTTIMEGET, 1) ->;
function startcountdown()
{
interval = window.setInterval("tick()",1000);
}
function stopcountdown()
{
window.clearInterval (interval);
interval="";
}
function tick()
{
document.countdown.display.value = i--;
if (i == -1){
stopcountdown();
}
}
</SCRIPT>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<h1><font face="Verdana, Arial, Helvetica, sans-serif">EWA Invalid Credentials</font></h1>
<p><font face="Verdana, Arial, Helvetica, sans-serif">Your credentials were not accepted.
However, you have been granted guest account status.
Please wait while network connection refreshes itself. </font></p>
<form name=countdown>
<p><font face="Arial, Helvetica, sans-serif">Time (sec) Remaining: </font>
<input type=text name=display value="">
</p>
</form>
<script>
startcountdown();
</script>
</body>
</html>
3-23