2025-02-22 15:15:04 +07:00
|
|
|
import { Button } from '@headlessui/react'
|
2025-02-21 20:47:15 +07:00
|
|
|
import { Link } from 'react-router'
|
|
|
|
|
|
|
|
|
|
import { LeftArrow } from '~/components/icons/left-arrow'
|
|
|
|
|
import { APP } from '~/data/meta'
|
|
|
|
|
|
|
|
|
|
export default function PopupSuccessResetPass() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex min-h-screen items-center justify-center">
|
|
|
|
|
<div className="w-full max-w-md p-6">
|
|
|
|
|
<div className="absolute top-[80px] left-[50px]">
|
|
|
|
|
<Link
|
|
|
|
|
to="/#"
|
|
|
|
|
className="mt-2 h-full py-2"
|
|
|
|
|
>
|
|
|
|
|
<LeftArrow
|
|
|
|
|
width={'70px'}
|
|
|
|
|
height={'70px'}
|
|
|
|
|
></LeftArrow>
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="mb-6 flex justify-center">
|
|
|
|
|
<Link to="/news">
|
|
|
|
|
<img
|
|
|
|
|
src={APP.logo}
|
|
|
|
|
alt={APP.title}
|
|
|
|
|
className="h-[80px]"
|
|
|
|
|
/>
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="mb-4 p-4 text-center">
|
|
|
|
|
<p className="text-[#565658]">
|
|
|
|
|
Link Reset Password telah dikirmkan ke email anda
|
|
|
|
|
</p>
|
|
|
|
|
<div className="my-10 flex justify-center">
|
|
|
|
|
<img
|
|
|
|
|
src={'/public/images/back-to-home.svg'}
|
|
|
|
|
alt={APP.title}
|
|
|
|
|
className="h-[350px]"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-02-22 15:15:04 +07:00
|
|
|
<Button className="mt-5 w-full rounded-md bg-[#2E2F7C] py-2 text-white transition hover:bg-blue-800">
|
2025-02-21 20:47:15 +07:00
|
|
|
Back to Home
|
2025-02-22 15:15:04 +07:00
|
|
|
</Button>
|
2025-02-21 20:47:15 +07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|