| BACK |
Password Script
Copy Script in Red:

<script language="Javascript">
<!--

// please keep these lines on when you copy the source
// made by: Nicolas - http://www.geocities.com/ResearchTriangle/1500

var username = prompt("Enter in the username \(It's 'please'\)")

if (username == "please") {
alert("Great \n \n Get ready to type in your password")
location = "simplepw2.html"
}

else {
location = "wrong.html"
}

//-->
var password = prompt("Enter in the password \(It's 'please'\)")

if (password == "please") {
alert("Come right in \n \n You've entered in the right username and password")
location = "simplepw2.html"
}

else {
location = "wrong.html"
}

//-->
</script>

End