Guest User

Untitled

a guest
Jan 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. cognitoUser.forgotPassword({
  2. onSuccess: function (result) {
  3. console.log('call result: ' + result);
  4. //Show login screen
  5. },
  6. onFailure: function(err) {
  7. alert(err);
  8. },
  9. inputVerificationCode: function() {
  10. var verificationCode = prompt('Enter the code from email' ,'');
  11. var newPassword = prompt('Please enter new password ' ,'');
  12. cognitoUser.confirmPassword(verificationCode, newPassword, this);
  13. }
  14. });
Add Comment
Please, Sign In to add comment