2FAuth/resources/js_vue3/views/auth/password/Reset.vue

63 lines
2.3 KiB
Vue

<script setup>
import Form from '@/components/formElements/Form'
import { useNotifyStore } from '@/stores/notify'
const notify = useNotifyStore()
const router = useRouter()
const route = useRoute()
const isPending = ref(true)
const form = reactive(new Form({
email : route.query.email,
password : '',
password_confirmation : '',
token: route.query.token
}))
/**
* Submits the password reset to the backend
*/
function resetPassword(e) {
form.password_confirmation = form.password
form.post('/user/password/reset', {returnError: true})
.then(response => {
form.password = ''
form.password_confirmation = ''
isPending.value = false
notify.success({ text: response.data.message, duration:-1 })
})
.catch(error => {
if( error.response.data.resetFailed ) {
notify.alert({ text: error.response.data.resetFailed, duration:-1 })
}
else if( error.response.status !== 422 ) {
notify.error(error)
}
})
}
onBeforeRouteLeave(() => {
notify.clear()
})
</script>
<template>
<FormWrapper :title="$t('auth.forms.new_password')">
<form @submit.prevent="resetPassword" @keydown="form.onKeydown($event)">
<FormField v-model="form.email" :isDisabled="true" fieldName="email" :fieldError="form.errors.get('email')" label="auth.forms.email" autofocus />
<FormPasswordField v-model="form.password" fieldName="password" :fieldError="form.errors.get('password')" :autocomplete="'new-password'" :showRules="true" label="auth.forms.new_password" />
<FieldError v-if="form.errors.get('token') != undefined" :error="form.errors.get('token')" :field="form.token" />
<FormButtons
v-if="isPending"
:submitId="'btnResetPwd'"
:isBusy="form.isBusy"
:caption="$t('auth.forms.change_password')"
:showCancelButton="true"
cancelLandingView="login" />
<RouterLink v-if="!isPending" id="btnContinue" :to="{ name: 'accounts' }" class="button is-link">{{ $t('commons.continue') }}</RouterLink>
</form>
<VueFooter />
</FormWrapper>
</template>