mirror of
https://github.com/docmost/docmost.git
synced 2025-11-19 19:31:09 +10:00
client: updates
* work on groups ui * move settings to its own page * other fixes and refactoring
This commit is contained in:
26
apps/client/src/pages/settings/account/account-settings.tsx
Normal file
26
apps/client/src/pages/settings/account/account-settings.tsx
Normal file
@ -0,0 +1,26 @@
|
||||
import AccountNameForm from "@/features/user/components/account-name-form";
|
||||
import ChangeEmail from "@/features/user/components/change-email";
|
||||
import ChangePassword from "@/features/user/components/change-password";
|
||||
import { Divider } from "@mantine/core";
|
||||
import AccountAvatar from "@/features/user/components/account-avatar";
|
||||
import SettingsTitle from "@/components/layouts/settings/settings-title.tsx";
|
||||
|
||||
export default function AccountSettings() {
|
||||
return (
|
||||
<>
|
||||
<SettingsTitle title="My Profile" />
|
||||
|
||||
<AccountAvatar />
|
||||
|
||||
<AccountNameForm />
|
||||
|
||||
<Divider my="lg" />
|
||||
|
||||
<ChangeEmail />
|
||||
|
||||
<Divider my="lg" />
|
||||
|
||||
<ChangePassword />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user