69 lines
2.2 KiB
Vue
69 lines
2.2 KiB
Vue
<template>
|
|
<Head><title>{{ __('Create password') }}</title></Head>
|
|
<div class="flex items-center justify-center w-full min-h-screen">
|
|
<Container size="small">
|
|
<form class="space-y-4" @submit.prevent="submit">
|
|
<div class="flex flex-col items-center space-y-5">
|
|
<img class="h-14" v-if="$page.props.settings.logo" :src="$page.props.settings.logo" />
|
|
<h1 class="font-semibold text-center text-title">
|
|
{{ __('Create password') }}
|
|
</h1>
|
|
</div>
|
|
|
|
<FormInput :label="__('Password')" :errors="$page.props.errors.password" v-model="form.password" id="password" type="password" required />
|
|
<FormInput :label="__('Confirm password')" :errors="$page.props.errors.password_confirmation" v-model="form.password_confirmation" id="password_confirmation" type="password" required />
|
|
|
|
<Button variant="primary" :disabled="sending" block>{{ __('Start') }}</Button>
|
|
</form>
|
|
</Container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TextDivider from '@/components/TextDivider.vue'
|
|
import FormInput from '@/components/forms/FormInput.vue'
|
|
import Button from '@/components/Button.vue'
|
|
import Container from '@/components/Container.vue'
|
|
import {useNotification} from '@/hooks/notification'
|
|
|
|
export default {
|
|
components: {
|
|
TextDivider,
|
|
FormInput,
|
|
Button,
|
|
Container,
|
|
},
|
|
|
|
props: {
|
|
email: String,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
sending: false,
|
|
form: {
|
|
email: null,
|
|
password: null,
|
|
password_confirmation: null,
|
|
},
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
useNotification,
|
|
|
|
submit() {
|
|
this.$inertia.post(this.route('password-creation.start', {
|
|
email: this.email
|
|
}), {
|
|
password: this.form.password,
|
|
password_confirmation: this.form.password_confirmation,
|
|
}, {
|
|
onStart: () => this.sending = true,
|
|
onFinish: () => this.sending = false
|
|
});
|
|
},
|
|
},
|
|
}
|
|
</script>
|