Advertisement

TrimwebsolutionsTrimwebsolutions

Problem and Solutions

firebase reset password without sending reset password email in Reactjs ?

By M.K. Verma · 2 May 2022

firebase reset password without sending reset password email in Reactjs ?

You can use the updatePassword method that comes with firebase.

import { getAuth, updatePassword } from "firebase/auth";

const auth = getAuth();

const user = auth.currentUser;
const newPassword = getPWFromForm();

updatePassword(user, newPassword).then(() => {
  // Update successful.
}).catch((error) => {
  // An error ocurred
  // ...
});