Advertisement
Guest User

Untitled

a guest
Oct 8th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4.  
  5. </style>
  6. <script>
  7. var user = document.getElementById("user");
  8. var pass = document.getElementById("pass");
  9.  
  10.  
  11. function login() {
  12. if user == "admin" {
  13. if pass == "admin" {
  14. window.location.href = "http://www.google.com";
  15. }
  16. }
  17. }
  18. </script>
  19. </head>
  20. <body>
  21. <input type="text" name="user" id="user"><br>
  22. <input type="text" name="pass" id="pass"><br>
  23. <button id="login" onclick="login();">Login</button>
  24. </body>
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement