1. Changed authentication from CHAP to PAP
2. Added a username "admin" with the password "temp123"
3. Changed html for login.html to:
Code: Select all
<html>
<head>
<meta http-equiv="refresh" content="0; url=login?username=admin&password=temp123">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="-1">
</head>
<body>
</body>
</html>
5. Changed html for redirect.html to:
Code: Select all
<html>
<center>
<head>
<meta http-equiv="Refresh" content="3;url=http://www.example.com" />
</head>
<body>
<h1>Welcome to Example, Inc.</h1>
<h2>Please wait while you are being redirected.</h2>
<p> </p>
<p>If nothing happens within 5 seconds, please click <a href="http://www.example.com">here.</p>
</body>
</center>
</html>