Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Login page
  5. </title>
  6. </head>
  7. <body>
  8. <h1 style="font-family:Comic Sans Ms;text-align="center";font-size:20pt;
  9. color:#00FF00;>
  10. Log in
  11. </h1>
  12. <form name="login">
  13. Username<input type="text" name="userid"/>
  14. Password<input type="password" name="pswrd"/>
  15. <input type="button" onclick="check(this.form)" value="Login"/>
  16. <input type="reset" value="Cancel"/>
  17. </form>
  18. <script language="javascript">
  19. function check(form)
  20. {
  21.  
  22. if(form.userid.value == "matthew" && form.pswrd.value == "matthew")
  23. {
  24. window.open('Chrome.exe')
  25. }
  26. else
  27. {
  28. alert("Nawp")
  29. }
  30. }
  31. </script>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement