Exercise 9: Password Reset and Change
Explore how to implement password reset and change functionalities using Firebase within a React application. This lesson guides you through integrating two new components, managing password forms on the Account page, and encourages securing this page for authenticated users only. By the end, you'll be able to manage password updates and enhance access control in your React Firebase app.
Project
...import React from 'react';
import { PasswordForgetForm } from '../PasswordForget';
import PasswordChangeForm from '../PasswordChange';
const AccountPage = () => (
<div>
<h1>Account Page</h1>
<PasswordForgetForm />
<PasswordChangeForm />
</div>
);
export default AccountPage;
The app contains two new ...