2023-01-21 02:12:53 +01:00
|
|
|
import { Breadcrumbs, Item } from 'react-basics';
|
2023-01-25 16:42:46 +01:00
|
|
|
import { useIntl } from 'react-intl';
|
2022-12-27 01:57:59 +01:00
|
|
|
import Page from 'components/layout/Page';
|
|
|
|
import PageHeader from 'components/layout/PageHeader';
|
2023-01-21 02:12:53 +01:00
|
|
|
import ProfileDetails from './ProfileDetails';
|
2023-01-24 00:32:35 +01:00
|
|
|
import PasswordChangeButton from './PasswordChangeButton';
|
2023-01-25 16:42:46 +01:00
|
|
|
import { labels } from 'components/messages';
|
2022-12-28 21:37:09 +01:00
|
|
|
|
2023-01-21 02:12:53 +01:00
|
|
|
export default function ProfileSettings() {
|
|
|
|
const { formatMessage } = useIntl();
|
2022-12-27 01:57:59 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Page>
|
|
|
|
<PageHeader>
|
|
|
|
<Breadcrumbs>
|
2023-01-25 16:42:46 +01:00
|
|
|
<Item>{formatMessage(labels.profile)}</Item>
|
2022-12-27 01:57:59 +01:00
|
|
|
</Breadcrumbs>
|
2023-01-24 00:32:35 +01:00
|
|
|
<PasswordChangeButton />
|
2022-12-27 01:57:59 +01:00
|
|
|
</PageHeader>
|
2023-01-11 02:18:59 +01:00
|
|
|
<ProfileDetails />
|
2022-12-27 01:57:59 +01:00
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
}
|