17 lines
409 B
JavaScript
17 lines
409 B
JavaScript
import React from 'react';
|
|
import PasswordResetForm from '../PasswordResetForm';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
const PasswordReset = () => {
|
|
const { t } = useTranslation('auth');
|
|
return (
|
|
<div className="text-center">
|
|
<h5>{ t('resetForm.title')}</h5>
|
|
<small>{t('resetForm.subTitle')}</small>
|
|
<PasswordResetForm />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PasswordReset;
|