54 lines
1.7 KiB
Vue
54 lines
1.7 KiB
Vue
<script setup lang="ts">
|
|
import InputError from '@/components/InputError.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';
|
|
|
|
const form = useForm({
|
|
password: '',
|
|
});
|
|
|
|
const submit = () => {
|
|
form.post(route('password.confirm'), {
|
|
onFinish: () => {
|
|
form.reset();
|
|
},
|
|
});
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<AuthLayout title="Bekreft ditt passord" description="Dette er et sikret område av applikasjonen, vennligst bekreft passordet ditt før du forsetter.">
|
|
<Head title="Bekreft passord" />
|
|
|
|
<form @submit.prevent="submit">
|
|
<div class="space-y-6">
|
|
<div class="grid gap-2">
|
|
<Label htmlFor="password">Passord</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
class="mt-1 block w-full"
|
|
v-model="form.password"
|
|
required
|
|
autocomplete="current-password"
|
|
autofocus
|
|
/>
|
|
|
|
<InputError :message="form.errors.password" />
|
|
</div>
|
|
|
|
<div class="flex items-center">
|
|
<Button class="w-full" :disabled="form.processing">
|
|
<LoaderCircle v-if="form.processing" class="h-4 w-4 animate-spin" />
|
|
Bekreft passord
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</AuthLayout>
|
|
</template>
|