mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
Add emails and auth page for dashboard account settings.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
77b10a8255
commit
adbf61b539
@ -0,0 +1,20 @@
|
||||
import { PageLayout } from "../page-layout";
|
||||
import { EmailsSection } from "./emails-section";
|
||||
import { MfaSection } from "./mfa-section";
|
||||
import { OtpSection } from "./otp-section";
|
||||
import { PasskeySection } from "./passkey-section";
|
||||
import { PasswordSection } from "./password-section";
|
||||
|
||||
export function EmailsAndAuthPage(props?: {
|
||||
mockMode?: boolean,
|
||||
}) {
|
||||
return (
|
||||
<PageLayout>
|
||||
<EmailsSection mockMode={props?.mockMode}/>
|
||||
<PasswordSection mockMode={props?.mockMode} />
|
||||
<PasskeySection mockMode={props?.mockMode} />
|
||||
<OtpSection mockMode={props?.mockMode} />
|
||||
<MfaSection mockMode={props?.mockMode} />
|
||||
</PageLayout>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user