Guest User

Untitled

a guest
Sep 26th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var user = new StackMob.User({ username: 'Chuck Norris' });
  2. user.forgotPassword();
  3.  
  4. //after checking getting his temp password in his email...
  5.  
  6. user.loginWithTempAndSetNewPassword('temporary password from StackMob email', 'mysuperfists');
  7.  
  8. ...
  9.  
  10. StackMob.getLoggedInUser(); //returns 'Chuck Norris'
  11.  
  12. //StackMob will log the user in with the temporary password and then give the user a new password: 'mysuperfists' for future logins
Add Comment
Please, Sign In to add comment