Skip to content

Instantly share code, notes, and snippets.

@tygern
Created August 26, 2015 13:20
Show Gist options
  • Select an option

  • Save tygern/700d8b48251e9e45994c to your computer and use it in GitHub Desktop.

Select an option

Save tygern/700d8b48251e9e45994c to your computer and use it in GitHub Desktop.
Automated User Creation - log in
var users = localStorage.getItem("users");
if (users) {
username = users.split(",").slice(-1)[0];
document.getElementById('username').value = username;
document.getElementById('password').value = 'testing123';
document.getElementById('submitButton').focus();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment