Answers for "firebase reset password javascript"

1

reset password firebase auth

var auth = firebase.auth();
var emailAddress = "[email protected]";
auth.sendPasswordResetEmail(emailAddress)
.then(function() {  
// Email sent.
})
.catch(function(error) {
// An error happened.
});
Posted by: Guest on April-04-2021
0

firebase reset password javascript

To implement a forgot password button, you have to call: firebase.auth().sendPasswordResetEmail('[email protected]')

Check the documentation for more details: https://firebase.google.com/docs/reference/js/firebase.auth.Auth#sendPasswordResetEmail
Posted by: Guest on March-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language