Exercise 9: Password Reset and Change
We will run and verify the Password Reset and Change functionality in this section.
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 ...