Some checks are pending
E2E / Playwright e2e (push) Waiting to run
- Replaced LoginForm with LoginPageContent for improved login handling and user experience. - Introduced ResetPasswordPage and ResetPasswordLayout components to facilitate password reset functionality. - Added new flow stages for authentication, including PasswordStage and SourceOAuthStage, to streamline user interactions. - Updated FlowChallengeForm to integrate new stages and improve error handling during authentication processes. - Refactored existing components to support the new authentication flow structure, enhancing maintainability and user experience.
17 lines
423 B
TypeScript
17 lines
423 B
TypeScript
import { LoginChrome } from "@/components/auth/login-chrome"
|
|
import type { Metadata } from "next"
|
|
import { suitePageMetadata } from "@/lib/suite/page-metadata"
|
|
|
|
export const metadata: Metadata = suitePageMetadata({
|
|
app: "suite",
|
|
title: "Réinitialiser le mot de passe",
|
|
})
|
|
|
|
export default function ResetPasswordLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return <LoginChrome>{children}</LoginChrome>
|
|
}
|