Nxttm
12-17-2008, 01:01 PM
R-----E-----S-----O-----L-----V-----E-----D
Hi all,
I am having trouble with this code, please help:
<script type="text/javascript">
<!-- Begin
var password;
var pass1 = "lvj4m35";
var pass2 = "byj4m35";
var pass3 = "frj4m35";
var pass4 = "foj4m35";
var pass5 = "fmj4m35";
var pass6 = "ysj4m35";
password=prompt("Please enter your password:","");
if (password==pass1) {
window.location= "natalie.html";
} else {
window.location= "sorry.html";
}
if (password==pass2) {
window.location= "Sam.html";
} else {
window.location= "sorry.html";
}
if (password==pass3) {
window.location= "chris.html";
} else {
window.location= "sorry.html";
}
if (password==pass4) {
window.location= "joe.html";
} else {
window.location= "sorry.html";
if (password==pass5) {
window.location= "daniel.html";
} else {
window.location= "sorry.html";
}
if (password==pass6) {
window.location= "derrick.html";
} else {
window.location= "test.html";
}
// End -->
</script>
The problem was that the usernames started with caps and the script converts all caps into non caps
Hi all,
I am having trouble with this code, please help:
<script type="text/javascript">
<!-- Begin
var password;
var pass1 = "lvj4m35";
var pass2 = "byj4m35";
var pass3 = "frj4m35";
var pass4 = "foj4m35";
var pass5 = "fmj4m35";
var pass6 = "ysj4m35";
password=prompt("Please enter your password:","");
if (password==pass1) {
window.location= "natalie.html";
} else {
window.location= "sorry.html";
}
if (password==pass2) {
window.location= "Sam.html";
} else {
window.location= "sorry.html";
}
if (password==pass3) {
window.location= "chris.html";
} else {
window.location= "sorry.html";
}
if (password==pass4) {
window.location= "joe.html";
} else {
window.location= "sorry.html";
if (password==pass5) {
window.location= "daniel.html";
} else {
window.location= "sorry.html";
}
if (password==pass6) {
window.location= "derrick.html";
} else {
window.location= "test.html";
}
// End -->
</script>
The problem was that the usernames started with caps and the script converts all caps into non caps