Advertisement
Guest User

Untitled

a guest
Feb 17th, 2024
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.08 KB | Help | 0 0
  1. <html>
  2.  <head>
  3.     <title>Host</title>
  4.     <script>
  5.         function validatePassword() {
  6.             var password = document.getElementById("password").value;
  7.  
  8.             if (password == "1234"){
  9.                 alert("You are now the host");
  10.                 return true;
  11.             }else{
  12.                 alert("Incorrect password, please try again.");
  13.                 return false;
  14.             }
  15.         }
  16.     </script>
  17.     <link rel="stylesheet" href="styles.css">
  18.     <link rel="icon" type="image/x-icon" href="">
  19.     <body>
  20.         <div class="topnav">
  21.             <a href="index.html">Home</a>
  22.             <a href="play.html">Play</a>
  23.             <a href="scores.html">Scores</a>
  24.             <a class="active" href="host.html">Host</a>
  25.         </div>
  26.  
  27.         <p class="welcome">
  28.             Host
  29.         </p>
  30.         <p>Enter the password to host trivia:</p>
  31.         <form onsubmit="return validatePassword()">
  32.             <input id="password" name="password" type="text">
  33.             <input type="submit" value="Submit">
  34.         </form>
  35.     </body>
  36. </head>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement