Advertisement
Guest User

12312sa

a guest
Jul 15th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 'use strict';
  2.  
  3. var creds = {
  4.     username: '....',
  5.     password: '....'
  6. };
  7.  
  8. setTimeout(function () {
  9.     document.getElementById('username').value = creds.username;
  10.     document.getElementById('password').value = creds.password;
  11.     document.getElementById('play-now-form').submit();
  12. }, 5000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement