Files
supabase/apps/studio/pages/forgot-password.tsx

34 lines
966 B
TypeScript

import Link from 'next/link'
import { ForgotPasswordWizard } from '@/components/interfaces/SignIn/ForgotPasswordWizard'
import ForgotPasswordLayout from '@/components/layouts/SignInLayout/ForgotPasswordLayout'
import type { NextPageWithLayout } from '@/types'
const ForgotPasswordPage: NextPageWithLayout = () => {
return (
<>
<div className="flex flex-col gap-4">
<ForgotPasswordWizard />
</div>
<div className="my-8 self-center text-sm">
<span className="text-foreground-light">Already have an account?</span>{' '}
<Link href="/sign-in" className="underline hover:text-foreground-light">
Sign In
</Link>
</div>
</>
)
}
ForgotPasswordPage.getLayout = (page) => (
<ForgotPasswordLayout
heading="Forgot your password?"
subheading="Enter your email and we'll send you a code to reset the password"
>
{page}
</ForgotPasswordLayout>
)
export default ForgotPasswordPage