“Firebase Redefinir senha JavaScript” Respostas de código

Redefinir a senha Firebase Auth

var auth = firebase.auth();
var emailAddress = "[email protected]";
auth.sendPasswordResetEmail(emailAddress)
.then(function() {  
// Email sent.
})
.catch(function(error) {
// An error happened.
});
DoubleDuty

Firebase Redefinir senha 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
Santino

Respostas semelhantes a “Firebase Redefinir senha JavaScript”

Perguntas semelhantes a “Firebase Redefinir senha JavaScript”

Mais respostas relacionadas para “Firebase Redefinir senha JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código