| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <script setup>
- import { Head, useForm } from '@inertiajs/inertia-vue3'
- import AuthValidationErrors from '@/components/AuthValidationErrors.vue'
-
- const props = defineProps({
- token: String,
- email: String,
- })
-
- const form = useForm({
- token: props.token,
- email: props.email,
- password: '',
- password_confirmation: '',
- })
-
- const submit = () => {
- form.post(route('password.update'), {
- onFinish: () => form.reset('password', 'password_confirmation'),
- })
- }
- </script>
-
- <template>
- <Head title="Reset Password" />
-
- <div class="surface-0 flex align-items-center justify-content-center min-h-screen min-w-screen overflow-hidden">
- <div class="grid flex-column align-items-center p-2 lg:p-0" style="min-width: 80%">
- <div class="col-12 xl:col-6">
- <AuthValidationErrors />
- </div>
-
- <div
- class="col-12 xl:col-6"
- style="
- border-radius: 56px;
- padding: 0.3rem;
- background: linear-gradient(180deg, var(--primary-color), rgba(33, 150, 243, 0) 30%);
- "
- >
- <div
- class="h-full w-full m-0 py-7 px-4"
- style="border-radius: 53px; background: linear-gradient(180deg, var(--surface-50) 38.9%, var(--surface-0))"
- >
- <div class="text-center mb-5 text-600 font-medium">
- <span>Reset Password</span> <br />
- <span>Tulis Password baru untuk login</span>
- </div>
-
- <div class="w-full md:w-10 mx-auto">
- <label for="email" class="block text-900 text-xl font-medium mb-2">Email</label>
- <InputText
- id="email"
- v-model="form.email"
- type="text"
- class="w-full mb-3"
- placeholder="email"
- style="padding: 1rem"
- />
-
- <label for="password" class="block text-900 font-medium text-xl mb-2">Password</label>
- <Password
- id="password"
- v-model="form.password"
- placeholder="password"
- :toggleMask="true"
- class="w-full mb-3"
- inputClass="w-full"
- inputStyle="padding:1rem"
- />
-
- <label for="password_confirm" class="block text-900 font-medium text-xl mb-2">Password</label>
- <Password
- id="password_confirm"
- v-model="form.password_confirmation"
- placeholder="konfirmasi password"
- :toggleMask="true"
- class="w-full mb-3"
- inputClass="w-full"
- inputStyle="padding:1rem"
- />
-
- <Button @click="submit" label="Reset Password" :disabled="form.processing" class="w-full p-3 text-xl" />
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
|