diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-04-05 09:46:31 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-04-05 09:46:31 +0700 |
| commit | 38c9fbb245aeb315e90f42c281a17257a5eeb122 (patch) | |
| tree | 38022c794bd87997ea38c7f946cf13598b65ec96 /src/pages/activate.jsx | |
| parent | bd65a11a9f6ed0589ccdf86745abbf12b17816e9 (diff) | |
forgot and reset password
Diffstat (limited to 'src/pages/activate.jsx')
| -rw-r--r-- | src/pages/activate.jsx | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/pages/activate.jsx b/src/pages/activate.jsx index 7f4b6056..48d9c4d3 100644 --- a/src/pages/activate.jsx +++ b/src/pages/activate.jsx @@ -1,13 +1,28 @@ import Seo from '@/core/components/Seo' import SimpleFooter from '@/core/components/elements/Footer/SimpleFooter' +import BasicLayout from '@/core/components/layouts/BasicLayout' +import DesktopView from '@/core/components/views/DesktopView' +import MobileView from '@/core/components/views/MobileView' import ActivateComponent from '@/lib/auth/components/Activate' export default function Activate() { return ( <> <Seo title='Aktivasi Akun Indoteknik.com' /> - <ActivateComponent /> - <SimpleFooter /> + <MobileView> + <ActivateComponent /> + <SimpleFooter /> + </MobileView> + + <DesktopView> + <BasicLayout> + <div className='container mx-auto'> + <div className='w-1/2 mx-auto'> + <ActivateComponent /> + </div> + </div> + </BasicLayout> + </DesktopView> </> ) } |
