44 lines
1.9 KiB
PHP
44 lines
1.9 KiB
PHP
<div class="flex min-h-screen">
|
|
<div class="flex-1 flex justify-center items-center">
|
|
<div class="w-80 md:w-100 space-y-6">
|
|
<div class="flex justify-center opacity-50">
|
|
<flux:brand href="{{ route('homepage') }}" name="Yadi Parfum" wire:navigate.hover>
|
|
<x-slot name="logo">
|
|
<div
|
|
class="size-8 rounded shrink-0 bg-accent text-accent-foreground flex items-center justify-center">
|
|
<i class="font-serif font-bold">YD</i>
|
|
</div>
|
|
</x-slot>
|
|
</flux:brand>
|
|
</div>
|
|
|
|
<flux:heading size="lg" class="mb-1">Atur Ulang Kata Sandi</flux:heading>
|
|
<flux:text>
|
|
Silakan masukkan kata sandi baru Anda untuk mengatur ulang kata sandi Anda.
|
|
</flux:text>
|
|
|
|
<div class="flex flex-col gap-6">
|
|
<flux:input label="Kata Sandi" wire:model="form.password" type="password" placeholder="********"
|
|
viewable />
|
|
|
|
<flux:input label="Konfirmasi Kata Sandi" wire:model="form.password_confirmation" type="password"
|
|
placeholder="********" viewable />
|
|
|
|
<flux:button variant="primary" class="w-full cursor-pointer" wire:click="resetPassword">Atur Ulang
|
|
</flux:button>
|
|
</div>
|
|
|
|
<flux:subheading class="text-center">
|
|
Sudah ingat kata sandi? <flux:link href="{{ route('login') }}" wire:navigate.hover>Masuk
|
|
</flux:link>
|
|
</flux:subheading>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex-1 p-4 max-lg:hidden">
|
|
<div class="relative rounded-lg h-full w-full bg-zinc-100 flex flex-col items-start justify-end p-16 bg-cover bg-center bg-no-repeat"
|
|
style="background-image: url('/assets/images/cover.jpg')">
|
|
</div>
|
|
</div>
|
|
</div>
|