test

<!DOCTYPE html> <html> <head> <title>Password</title> <style> body { background-color: lightblue; padding: 30px; } </style> <script> function checkPassword() { var password = document.getElementById("passwordBox"); var passwordText = password.value; if(passwordText == "Ernest300") { return true; } alert("Access denied! Incorrect password!"); return false; } </script> </head> <body> <p style="font-size: 30pt;">THE MONK DIAMOND DISCOVERY</p> <p>Please enter the password to view this website.</p> <p>Password:<input id="passwordBox" type="password"/></p> <a href="monkdiamonddiscovery.html" onclick="return checkPassword();"> Click here to submit password and view website </a> </body> </html>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.