Advertisement
Guest User

Untitled

a guest
Jun 14th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <div id="form">
  2.  
  3. <form>
  4.  
  5. <script>
  6. function checkValid(){
  7. var pass = document.getElementById("pass").value;
  8. var usrn = document.getElementById("usern").value;
  9. if (pass == "PSSSWORD HERE" && usrn == "USERNAME HERE"){
  10. window.open('You're in link here');
  11. }
  12. else{
  13. window.open('NOPE link here');;
  14. }
  15. }
  16.  
  17. </script>
  18.  
  19.  
  20.  
  21. <label for="usr">Username:</label>
  22. <input type = "username" id = "usern" name = "usr" style = "autocomplete:off">
  23. <br>
  24. <label for="psw">Password:</label>
  25. <input type = "password" id = "pass" name = "psw">
  26. <br>
  27. <br>
  28. <input type = "submit" value = "log in" onclick = "checkValid();">
  29. <input type = "button" value = "back" onclick = "window.location.href = 'BACK BUTTON LINK HERE';">
  30.  
  31. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement