Allow a user to start the forgot password process. The user will be emailed a
temporary code that must be passed with a new password to the function
returned.
// Prompt the user to enter the code and a new password constcode = prompt( 'You have been emailed a verification code, please enter it here.', ) constnewPassword = prompt('Please enter a new password to continue.') awaitfinishForgotPassword(code, newPassword)
Parameters
username: string
OptionalformsAppId: number
Used to give the resulting email sent to the user
associated forms app branding and sending address
Allow a user to start the forgot password process. The user will be emailed a temporary code that must be passed with a new password to the function returned.
Example