mirror of
https://github.com/rjNemo/MERN_sample_app
synced 2026-06-10 18:46:40 +00:00
25 lines
578 B
JavaScript
25 lines
578 B
JavaScript
import React from "react";
|
|
import { Container } from "reactstrap";
|
|
import PasswordChangeForm from "../../components/PasswordChangeForm";
|
|
import PasswordForgetForm from "../../components/PasswordForgetForm";
|
|
|
|
const styles = {
|
|
root: {
|
|
paddingTop: "1rem",
|
|
paddingBottom: "1rem",
|
|
},
|
|
};
|
|
|
|
const AccountPage = () => {
|
|
return (
|
|
<Container style={styles.root}>
|
|
<h1>Account</h1>
|
|
<h2>Forgot your password?</h2>
|
|
<PasswordForgetForm />
|
|
<h2>Change your password</h2>
|
|
<PasswordChangeForm />
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
export default AccountPage;
|