55 lines
1.9 KiB
Vue
55 lines
1.9 KiB
Vue
<script setup lang="ts">
|
|
import InputError from '@/components/InputError.vue';
|
|
import TextLink from '@/components/TextLink.vue';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import AuthLayout from '@/layouts/AuthLayout.vue';
|
|
import { Head, useForm } from '@inertiajs/vue3';
|
|
import { LoaderCircle } from 'lucide-vue-next';
|
|
|
|
defineProps<{
|
|
status?: string;
|
|
}>();
|
|
|
|
const form = useForm({
|
|
email: '',
|
|
});
|
|
|
|
const submit = () => {
|
|
form.post(route('password.email'));
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<AuthLayout title="Glemt passord" description="Oppgi passordet ditt så vi kan sende deg en tilbakestillings lenke">
|
|
<Head title="Glemt passord" />
|
|
|
|
<div v-if="status" class="mb-4 text-center text-sm font-medium text-green-600">
|
|
{{ status }}
|
|
</div>
|
|
|
|
<div class="space-y-6">
|
|
<form @submit.prevent="submit">
|
|
<div class="grid gap-2">
|
|
<Label for="email">Epost adresse</Label>
|
|
<Input id="email" type="email" name="email" autocomplete="off" v-model="form.email" autofocus placeholder="ola@nordmann.no" />
|
|
<InputError :message="form.errors.email" />
|
|
</div>
|
|
|
|
<div class="my-6 flex items-center justify-start">
|
|
<Button class="w-full" :disabled="form.processing">
|
|
<LoaderCircle v-if="form.processing" class="h-4 w-4 animate-spin" />
|
|
Send tilbakestillings lenke
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="space-x-1 text-center text-sm text-muted-foreground">
|
|
<span>Eller returner til</span>
|
|
<TextLink :href="route('login')">innlogging</TextLink>
|
|
</div>
|
|
</div>
|
|
</AuthLayout>
|
|
</template>
|