Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2.  
  3.     // Maximum security unhackable login method.
  4.  
  5.     var username = 'username',
  6.         password = 'password';
  7.  
  8.     if($('#username').val() == username && $('#password').val() == password) {
  9.         location.href = 'super_secret_administration_page_noone_can_get_in.php';
  10.     }
  11.     else {
  12.         alert('Hiba!');
  13.     }
  14.  
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement