mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
29 lines
599 B
TypeScript
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
|