import { getRequiredServerComponentSession } from '@documenso/lib/next-auth/get-server-component-session'; import { AuthenticatorApp } from '~/components/forms/2fa/authenticator-app'; import { RecoveryCodes } from '~/components/forms/2fa/recovery-codes'; import { PasswordForm } from '~/components/forms/password'; export default async function SecuritySettingsPage() { const { user } = await getRequiredServerComponentSession(); return (

Security

Here you can manage your password and security settings.



Two Factor Authentication

Add and manage your two factor security settings to add an extra layer of security to your account!

Two-factor methods
{user.twoFactorEnabled && (
Recovery methods
)}
); }