Password Recovery
Recover by mobile number
await userManager.sendMobileForgotPasswordVerifyCode('+1', phone, 'en-US');
await userManager.forgotWithMobile('+1', phone, verificationCode, newPassword);Recover by email
await userManager.sendEmailForgotPasswordVerifyCode(email, 'en-US');
await userManager.forgotWithEmail(email, verificationCode, newPassword);Log in again with the new password after a successful reset. Invalid or expired codes, rate limits, and network failures reject the Promise.