Some checks are pending
E2E / Playwright e2e (push) Waiting to run
- Added new layout and page components for forgot password and signup functionalities, enhancing user experience. - Integrated authentication flow handling for password recovery and account creation, utilizing dynamic metadata. - Updated login form to include links for forgot password and signup, improving navigation between authentication states. - Refactored CSS styles for login components to ensure consistent design across different authentication pages.
17 lines
414 B
TypeScript
17 lines
414 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: "Mot de passe oublié",
|
|
})
|
|
|
|
export default function ForgotPasswordLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return <LoginChrome>{children}</LoginChrome>
|
|
}
|