Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.29 KB | None | 0 0
  1. <html>
  2.     <head>
  3.    
  4.         <title>Login</title>
  5.    
  6.         <script type="text/javascript">
  7.  
  8.             function login(){
  9.             var un = document.form.username.value;
  10.             var pw = document.form.password.value;
  11.            
  12.             if (un == "billiejean"){
  13.                 if (pw == "notmyluvr"){
  14.                     alert("Correct!");
  15.                     parent.location = "categories.html";
  16.                 }
  17.                 else {
  18.                 alert("Incorrect Username/Password.");
  19.                 }
  20.             }
  21.             if (un == "annie"){
  22.                 if (pw == "ruokay"){
  23.                     alert("Correct!");
  24.                     parent.location = "categories.html";
  25.                 }
  26.                 else {
  27.                 alert("Incorrect Username/Password.");
  28.                 }
  29.             }
  30.             }
  31.        
  32.         </script>
  33.  
  34.    
  35.     </head>
  36.     <body>
  37.    
  38.         <form id="form" name="form" method="post" enctype="text/plain" action=>
  39.        
  40.         <center>
  41.         <table border="1" cellpadding="5">
  42.         <tr>
  43.         <td colspan="2">Login</td>
  44.         </tr>
  45.         <tr>
  46.         <td>Username</td>
  47.         <td><input type="text" name="username" size="20"></td>
  48.         </tr>
  49.         <tr>
  50.         <td>Password</td>
  51.         <td><input type="password" name="password" size="20"></td>
  52.         </tr>
  53.         <tr>
  54.         <td colspan="2" align="center"><input type="button" value="Submit" onclick="login()">
  55.             <input type="reset" value="Reset"></td>
  56.         </tr>
  57.         </table>
  58.         </center>
  59.        
  60.         </form>
  61.    
  62.         <center><b><a href="reg.html">
  63.             New users click here to register.</a></b></center>
  64.    
  65.     </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement