30 lines
872 B
TypeScript
30 lines
872 B
TypeScript
import { Button } from '~/components/ui/button'
|
|
|
|
export default function FormSubscription() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center">
|
|
<div className="w-full max-w-md">
|
|
<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 */}
|
|
<Button className="mt-5 w-full rounded-md bg-[#2E2F7C] py-2 text-white transition hover:bg-blue-800">
|
|
Lanjutkan
|
|
</Button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|