function LogIn(){
loggedin=false;
username="";
password="";
username=prompt("Username:","");
username=username.toLowerCase();
password=prompt("Password:","");
password=password.toLowerCase();
if (username=="Jaybird" && password=="computer") {
loggedin=true;
window.location="home-page.html";
}
if (username=="guest2" && password=="login2") {
loggedin=true;
window.location="home-page2.html";
}
if (username=="Jaybirdchest" && password=="computer") {
loggedin=true;
window.location="http://jaybirdchest.webs.com/operatingsystems.htm";
}
if (loggedin==false) {
alert("Invalid login!");
}
}
Live view - AXIS 241Q Blade Video Server