<html>
<title>
Login page
</title>
<body>
<body bgcolor="blue">
<center>
<b><font color="red">Authorization Password</font></b>
<form name="login">
<input type="password" name="password"/>
<br>
<input type="button" onclick="check(this.form)" value="Login"/>
</form>
</center>
<script language="javascript">
function check(form)
{
if(form.password.value == "test") //your password
{
window.location.replace('https://www.theforeverdamned.com/') //website to redirect to if password is correct
}
else
{
alert("Password Invalid!") //error message to display if password is incorrect
}
}
</script>
</body>
</html>
<html>
<title>
Login page
</title>
<body>
<body bgcolor="blue">
<center>
<b><font color="red">Authorization Password</font></b>
<form name="login">
<input type="password" name="password"/>
<br>
<input type="button" onclick="check(this.form)" value="Login"/>
</form>
</center>
<script language="javascript">
function check(form)
{
if(form.password.value == "test") //your password
{
window.location.replace('https://www.theforeverdamned.com/') //website to redirect to if password is correct
}
else
{
alert("Password Invalid!") //error message to display if password is incorrect
}
}
</script>
</body>
</html>
Copyright © 2026, NextGenUpdate.
All Rights Reserved.