2022-09-20 10:16:28 +08:00
|
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
|
|
|
|
import NavBar from '@/components/NavBar';
|
2022-09-20 10:33:53 +08:00
|
|
|
import ResetPasswordForm from '@/containers/ResetPassword';
|
2022-09-20 10:16:28 +08:00
|
|
|
|
|
|
|
import * as styles from './index.module.scss';
|
|
|
|
|
|
|
|
const ResetPassword = () => {
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={styles.wrapper}>
|
|
|
|
<NavBar />
|
|
|
|
<div className={styles.container}>
|
|
|
|
<div className={styles.title}>{t('description.new_password')}</div>
|
2022-10-10 10:57:07 +08:00
|
|
|
{/* eslint-disable-next-line jsx-a11y/no-autofocus */}
|
2022-09-20 10:33:53 +08:00
|
|
|
<ResetPasswordForm autoFocus />
|
2022-09-20 10:16:28 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ResetPassword;
|