Resetting Passwords
Sometimes users forget their passwords and need a way to reset it. In this lesson I will show you how to pass the users email to Firebase in order to get a password recovery email sent to them.
We'll cover the following...
Forgot Password Form Submit Event Listener #
Press + to interact
// Forgot password form submit eventforgotPasswordForm.addEventListener(`submit`, event => {event.preventDefault();// Grab value from formvar emailAddress = document.getElementById(`forgot-password-email`).value;});
...