mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
24 lines
813 B
TypeScript
24 lines
813 B
TypeScript
import { PageMetaData } from '../../components/patterns/PageMetaData'
|
|
import { ProfileLayout } from '../../components/templates/ProfileLayout'
|
|
import { EmailForgotPassword } from '../../components/templates/auth/EmailForgotPassword'
|
|
import { useEffect } from 'react'
|
|
import { useRouter } from 'next/router'
|
|
import toast, { Toaster } from 'react-hot-toast'
|
|
import { showSuccessToast } from '../../lib/toastHelpers'
|
|
|
|
export default function ForgotPassword(): JSX.Element {
|
|
return (
|
|
<>
|
|
<PageMetaData title="Reset your password - Omnivore" path="/auth-forgot-password" />
|
|
<Toaster
|
|
containerStyle={{
|
|
top: '5rem',
|
|
}}
|
|
/>
|
|
<ProfileLayout>
|
|
<EmailForgotPassword />
|
|
</ProfileLayout>
|
|
<div data-testid="auth-forgot-password-page-tag" />
|
|
</>
|
|
)
|
|
}
|