PHP Classes

File: resources/js/Pages/Auth/ForgotPassword.vue

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg CRM   resources/js/Pages/Auth/ForgotPassword.vue   Download  
File: resources/js/Pages/Auth/ForgotPassword.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Iceburg CRM
CRM application to manage contacts
Author: By
Last change:
Date: 2 years ago
Size: 1,579 bytes
 

Contents

Class file image Download
<script setup> import BreezeButton from '@/Components/Button.vue'; import BreezeGuestLayout from '@/Layouts/Guest.vue'; import BreezeInput from '@/Components/Input.vue'; import BreezeLabel from '@/Components/Label.vue'; import BreezeValidationErrors from '@/Components/ValidationErrors.vue'; import { Head, useForm } from '@inertiajs/inertia-vue3'; defineProps({ status: String, }); const form = useForm({ email: '', }); const submit = () => { form.post(route('password.email')); }; </script> <template> <BreezeGuestLayout> <Head title="Forgot Password" /> <div class="mb-4 text-sm text-gray-600"> Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one. </div> <div v-if="status" class="mb-4 font-medium text-sm text-green-600"> {{ status }} </div> <BreezeValidationErrors class="mb-4" /> <form @submit.prevent="submit"> <div> <BreezeLabel for="email" value="Email" /> <BreezeInput id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autofocus autocomplete="username" /> </div> <div class="flex items-center justify-end mt-4"> <BreezeButton :class="{ 'opacity-25': form.processing }" :disabled="form.processing"> Email Password Reset Link </BreezeButton> </div> </form> </BreezeGuestLayout> </template>