From the course: Firebase Essential Training

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Resetting passwords

Resetting passwords - Google Cloud Tutorial

From the course: Firebase Essential Training

Start my 1-month free trial

Resetting passwords

- Now that we've seen how to do oauth stuff with Firebase. What we're going to do now is move on to adding the reset password functionality to our app. Now this task won't actually involve cloud functions, but it's still something we need to implement in order for our app to be complete. So as we see, when we click this forgot your password link here, it brings up a little modal with a text box that the user can input their email address into and what we need to do now is call the appropriate Firebase function to have it actually send a reset password link to that user's email. So here's what that's going to look like. Inside our front ends off directory we're going to create a wrapper function for Firebases send password reset email function. So we'll call ours, send reset password email as well. And here's what it's going to look like. We're going to say import Firebase from Firebase slash app. And then we're going to say…

Contents