mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 16:52:17 +01:00
86 lines
2.8 KiB
Vue
86 lines
2.8 KiB
Vue
<script setup lang="ts">
|
|
import { Head, useForm } from '@inertiajs/vue3';
|
|
import AuthenticationCard from '@/Components/AuthenticationCard.vue';
|
|
import AuthenticationCardLogo from '@/Components/AuthenticationCardLogo.vue';
|
|
import { Field, FieldLabel, FieldError } from '@/packages/ui/src/field';
|
|
import PrimaryButton from '@/packages/ui/src/Buttons/PrimaryButton.vue';
|
|
import TextInput from '@/packages/ui/src/Input/TextInput.vue';
|
|
|
|
const props = defineProps({
|
|
email: String,
|
|
token: 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" />
|
|
|
|
<AuthenticationCard>
|
|
<template #logo>
|
|
<AuthenticationCardLogo />
|
|
</template>
|
|
|
|
<form @submit.prevent="submit">
|
|
<Field>
|
|
<FieldLabel for="email">Email</FieldLabel>
|
|
<TextInput
|
|
id="email"
|
|
v-model="form.email"
|
|
type="email"
|
|
class="block w-full"
|
|
required
|
|
autofocus
|
|
autocomplete="username" />
|
|
<FieldError v-if="form.errors.email">{{ form.errors.email }}</FieldError>
|
|
</Field>
|
|
|
|
<Field class="mt-4">
|
|
<FieldLabel for="password">Password</FieldLabel>
|
|
<TextInput
|
|
id="password"
|
|
v-model="form.password"
|
|
type="password"
|
|
class="block w-full"
|
|
required
|
|
autocomplete="new-password" />
|
|
<FieldError v-if="form.errors.password">{{ form.errors.password }}</FieldError>
|
|
</Field>
|
|
|
|
<Field class="mt-4">
|
|
<FieldLabel for="password_confirmation">Confirm Password</FieldLabel>
|
|
<TextInput
|
|
id="password_confirmation"
|
|
v-model="form.password_confirmation"
|
|
type="password"
|
|
class="block w-full"
|
|
required
|
|
autocomplete="new-password" />
|
|
<FieldError v-if="form.errors.password_confirmation">{{
|
|
form.errors.password_confirmation
|
|
}}</FieldError>
|
|
</Field>
|
|
|
|
<div class="flex items-center justify-end mt-4">
|
|
<PrimaryButton
|
|
:class="{ 'opacity-25': form.processing }"
|
|
:disabled="form.processing">
|
|
Reset Password
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</AuthenticationCard>
|
|
</template>
|