Hi:
I register my users with:
Ionic.Auth.signup(details).then(signupSuccess, signupFailure);
I login my users with:
Ionic.Auth.login(authProvider, authSettings, loginDetails)
.then(authSuccess, authFailure);
How I can change the user password?
I tried with:
user.set(‘password’, xxxxx);
and,
user.resetPassword();
but This, send email with a new password, but I want to change de password that
user chooses.