2019-06-23 01:53:50 +00:00
|
|
|
import * as React from 'react';
|
|
|
|
import ContentBox from '@/components/elements/ContentBox';
|
2019-06-26 04:28:56 +00:00
|
|
|
import UpdatePasswordForm from '@/components/dashboard/forms/UpdatePasswordForm';
|
|
|
|
import UpdateEmailAddressForm from '@/components/dashboard/forms/UpdateEmailAddressForm';
|
2019-12-23 01:03:44 +00:00
|
|
|
import ConfigureTwoFactorForm from '@/components/dashboard/forms/ConfigureTwoFactorForm';
|
2020-04-17 18:17:01 +00:00
|
|
|
import PageContentBlock from '@/components/elements/PageContentBlock';
|
2020-07-03 21:19:05 +00:00
|
|
|
import tw from 'twin.macro';
|
|
|
|
import { breakpoint } from '@/theme';
|
|
|
|
import styled from 'styled-components/macro';
|
2020-12-06 21:56:14 +00:00
|
|
|
import MessageBox from '@/components/MessageBox';
|
2021-03-21 19:07:24 +00:00
|
|
|
import { useLocation } from 'react-router-dom';
|
2019-12-23 01:03:44 +00:00
|
|
|
|
|
|
|
const Container = styled.div`
|
2022-06-26 19:13:52 +00:00
|
|
|
${tw`flex flex-wrap`};
|
2019-12-23 01:03:44 +00:00
|
|
|
|
2022-06-26 19:13:52 +00:00
|
|
|
& > div {
|
|
|
|
${tw`w-full`};
|
2019-12-23 01:03:44 +00:00
|
|
|
|
2022-06-26 19:13:52 +00:00
|
|
|
${breakpoint('sm')`
|
2022-02-05 17:08:11 +00:00
|
|
|
width: calc(50% - 1rem);
|
|
|
|
`}
|
2019-12-23 01:03:44 +00:00
|
|
|
|
2022-06-26 19:13:52 +00:00
|
|
|
${breakpoint('md')`
|
2022-02-05 17:08:11 +00:00
|
|
|
${tw`w-auto flex-1`};
|
|
|
|
`}
|
2022-06-26 19:13:52 +00:00
|
|
|
}
|
2019-12-23 01:03:44 +00:00
|
|
|
`;
|
2019-06-23 01:53:50 +00:00
|
|
|
|
2021-03-21 19:07:24 +00:00
|
|
|
export default () => {
|
|
|
|
const { state } = useLocation<undefined | { twoFactorRedirect?: boolean }>();
|
|
|
|
|
2019-06-23 01:53:50 +00:00
|
|
|
return (
|
2020-09-08 03:26:18 +00:00
|
|
|
<PageContentBlock title={'Account Overview'}>
|
2022-06-26 19:13:52 +00:00
|
|
|
{state?.twoFactorRedirect && (
|
|
|
|
<MessageBox title={'2-Factor Required'} type={'error'}>
|
|
|
|
Your account must have two-factor authentication enabled in order to continue.
|
|
|
|
</MessageBox>
|
|
|
|
)}
|
2022-02-05 17:08:11 +00:00
|
|
|
|
2022-06-26 19:13:52 +00:00
|
|
|
<Container css={[tw`lg:grid lg:grid-cols-3 mb-10`, state?.twoFactorRedirect ? tw`mt-4` : tw`mt-10`]}>
|
2020-04-17 18:17:01 +00:00
|
|
|
<ContentBox title={'Update Password'} showFlashes={'account:password'}>
|
2022-06-26 19:13:52 +00:00
|
|
|
<UpdatePasswordForm />
|
2020-04-17 18:17:01 +00:00
|
|
|
</ContentBox>
|
2022-06-26 19:13:52 +00:00
|
|
|
<ContentBox css={tw`mt-8 sm:mt-0 sm:ml-8`} title={'Update Email Address'} showFlashes={'account:email'}>
|
|
|
|
<UpdateEmailAddressForm />
|
2020-04-17 18:17:01 +00:00
|
|
|
</ContentBox>
|
2022-07-02 22:53:03 +00:00
|
|
|
<ContentBox css={tw`md:ml-8 mt-8 md:mt-0`} title={'Two-Step Verification'}>
|
2022-06-26 19:13:52 +00:00
|
|
|
<ConfigureTwoFactorForm />
|
2020-04-17 18:17:01 +00:00
|
|
|
</ContentBox>
|
|
|
|
</Container>
|
|
|
|
</PageContentBlock>
|
2019-06-23 01:53:50 +00:00
|
|
|
);
|
|
|
|
};
|