Signing In
In this lesson, we grab the values from the sign in authentication form and pass those values to Firebase to authenticate already existing users of our app.
We'll cover the following...
We'll cover the following...
Sign In Form Event Listener #
Press + to interact
// Sign in form submit eventsignInForm.addEventListener(`submit`, event => {event.preventDefault();// Grab values from formconst email = document.getElementById(`sign-in-email`).value;const password = document.getElementById(`sign-in-password`).value;});
...