ohmyform-ui/pages/login/recover.tsx

29 lines
599 B
TypeScript

import { Alert } from 'antd'
import { AuthFooter } from 'components/auth/footer'
import { AuthLayout } from 'components/auth/layout'
import { NextPage } from 'next'
import React from 'react'
import { Omf } from '../../components/omf'
const Recover: NextPage = () => {
return (
<AuthLayout>
<Omf />
<Alert
style={{
margin: 'auto',
maxWidth: '90%',
width: 500,
textAlign: 'center',
}}
type={'warning'}
message={'Work in Progress'}
/>
<AuthFooter />
</AuthLayout>
)
}
export default Recover