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