| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <script setup>
- import { Head, useForm } from '@inertiajs/inertia-vue3'
- import { useFormErrorReset } from '@/components/useFormErrorReset'
- import AppInputText from '@/components/AppInputText.vue'
- import AppPassword from '@/components/AppPassword.vue'
- import AuthLayout from '@/layouts/AuthLayout.vue'
-
- const props = defineProps({
- token: String,
- email: String,
- })
-
- const form = useForm({
- token: props.token,
- email: props.email,
- password: '',
- password_confirmation: '',
- })
-
- useFormErrorReset(form)
-
- const onSubmit = () => {
- form.post(route('password.update'), {
- onFinish: () => form.reset('password', 'password_confirmation'),
- })
- }
- </script>
-
- <template>
- <Head title="Reset Password" />
-
- <AuthLayout>
- <template #header>
- <span>Reset Password</span> <br />
- <span>Tulis Password baru untuk login</span>
- </template>
-
- <AppInputText v-model="form.email" label="Email" placeholder="email" :error="form.errors.email" />
-
- <AppPassword v-model="form.password" label="Password" placeholder="password" :error="form.errors.password" />
-
- <AppPassword
- v-model="form.password_confirmation"
- label="konfirmasi password"
- placeholder="konfirmasi password"
- :error="form.errors.password_confirmation"
- />
-
- <Button @click="onSubmit" label="Reset Password" :disabled="form.processing" class="w-full p-3 text-xl" />
- </AuthLayout>
- </template>
|