I’m not using the widget. How do I reset the password in this case ? The documentation here: explains how to do it from the backend. However it must be possible from the front end as well.
For example to sign up I do like this:
this.auth0.redirect.signupAndLogin({
connection: 'Username-Password-Authentication',
email,
password,
state
}
What would be the equivalent to reset the password ?
I’ve seen this :
this.auth0.changePassword()
If that is what I should use, then what are the parameters to be used ?