* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
62 lines
1.9 KiB
TypeScript
62 lines
1.9 KiB
TypeScript
import Copyright from 'Shared/Copyright';
|
|
import React from 'react';
|
|
import { Link } from 'UI';
|
|
import { Button } from 'antd';
|
|
import { login as loginRoute } from 'App/routes';
|
|
import ResetPassword from './ResetPasswordRequest';
|
|
import CreatePassword from './CreatePassword';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
const LOGIN = loginRoute();
|
|
|
|
function ForgotPassword(props) {
|
|
const { t } = useTranslation();
|
|
const params = new URLSearchParams(props.location.search);
|
|
const pass = params.get('pass');
|
|
const invitation = params.get('invitation');
|
|
const creatingNewPassword = pass && invitation;
|
|
|
|
return (
|
|
<div className="flex items-center justify-center h-screen -mt-20">
|
|
<div className="flex flex-col items-center">
|
|
<div className="m-10 ">
|
|
<img src="/assets/logo.svg" width={200} />
|
|
</div>
|
|
<div
|
|
className="border rounded-lg bg-white shadow-sm"
|
|
style={{ width: '350px' }}
|
|
>
|
|
{creatingNewPassword ? (
|
|
<h2 className="text-center text-lg font-medium mb-6 border-b p-5 w-full">
|
|
{t('Welcome, join your organization by creating a new password')}
|
|
</h2>
|
|
) : (
|
|
<h2 className="text-center text-2xl font-medium mb-6 border-b p-5 w-full">
|
|
{t('Reset Password')}
|
|
</h2>
|
|
)}
|
|
|
|
<div className="w-full px-8">
|
|
{creatingNewPassword ? (
|
|
<CreatePassword params={params} />
|
|
) : (
|
|
<ResetPassword />
|
|
)}
|
|
</div>
|
|
|
|
<div className="flex flex-col items-center justify-center">
|
|
<div className="my-8">
|
|
<Link to={LOGIN}>
|
|
<Button type="link">{t('Back to Login')}</Button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<Copyright />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default ForgotPassword;
|