2025-02-22 15:15:04 +07:00
|
|
|
import { Button } from '@headlessui/react'
|
2025-02-21 20:47:15 +07:00
|
|
|
|
2025-02-22 15:15:04 +07:00
|
|
|
import HeaderModal from '~/components/popup/header-modal'
|
2025-02-21 20:47:15 +07:00
|
|
|
|
|
|
|
|
export default function FormSubscription() {
|
|
|
|
|
return (
|
2025-02-22 15:15:04 +07:00
|
|
|
<div className="flex flex-col items-center justify-center">
|
|
|
|
|
<HeaderModal>
|
|
|
|
|
<p>
|
|
|
|
|
Selamat Datang, silakan Pilih Subscription Anda untuk melanjutkan!
|
|
|
|
|
</p>
|
|
|
|
|
</HeaderModal>
|
2025-02-21 20:47:15 +07:00
|
|
|
|
2025-02-22 15:15:04 +07:00
|
|
|
<div className="w-full max-w-md">
|
2025-02-21 20:47:15 +07:00
|
|
|
<form>
|
|
|
|
|
{/* Subscribe*/}
|
|
|
|
|
<div className="mb-4">
|
|
|
|
|
<label
|
|
|
|
|
htmlFor="subscription"
|
|
|
|
|
className="mb-1 block text-gray-700"
|
|
|
|
|
>
|
|
|
|
|
Subscription
|
|
|
|
|
</label>
|
|
|
|
|
<select className="focus:inheriten w-full rounded-md border border-[#DFDFDF] p-2">
|
|
|
|
|
<option selected>Subscription</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Tombol Masuk */}
|
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">
|
|
|
|
|
Lanjutkan
|
|
|
|
|
</Button>
|
2025-02-21 20:47:15 +07:00
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|