...

/

Exercise 9: Password Reset and Change

Exercise 9: Password Reset and Change

We will run and verify the Password Reset and Change functionality in this section.

We'll cover the following...

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 ...