2020-01-14 17:06:59 +01:00
|
|
|
<template>
|
2020-01-28 15:33:33 +01:00
|
|
|
<form-wrapper :title="$t('auth.forms.reset_password')" :fail="fail" :success="success">
|
|
|
|
<form @submit.prevent="handleSubmit" @keydown="form.onKeydown($event)">
|
|
|
|
<div class="field">
|
|
|
|
<label class="label">{{ $t('auth.forms.email') }}</label>
|
|
|
|
<div class="control">
|
|
|
|
<input id="email" type="email" class="input" v-model="form.email" autofocus />
|
|
|
|
</div>
|
|
|
|
<field-error :form="form" field="email" />
|
2020-01-14 17:06:59 +01:00
|
|
|
</div>
|
2020-01-28 15:33:33 +01:00
|
|
|
<div class="field is-grouped">
|
|
|
|
<div class="control">
|
|
|
|
<v-button :isLoading="form.isBusy" >{{ $t('auth.forms.send_password_reset_link') }}</v-button>
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<router-link :to="{ name: 'login' }" class="button is-text">{{ $t('commons.cancel') }}</router-link>
|
|
|
|
</div>
|
2020-01-14 23:50:07 +01:00
|
|
|
</div>
|
2020-01-28 15:33:33 +01:00
|
|
|
</form>
|
|
|
|
</form-wrapper>
|
2020-01-14 17:06:59 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-01-20 22:51:57 +01:00
|
|
|
|
|
|
|
import Form from './../../../components/Form'
|
|
|
|
|
2020-01-14 17:06:59 +01:00
|
|
|
export default {
|
|
|
|
data(){
|
|
|
|
return {
|
2020-01-28 15:33:33 +01:00
|
|
|
success: '',
|
|
|
|
fail: '',
|
2020-01-20 22:51:57 +01:00
|
|
|
form: new Form({
|
|
|
|
email: '',
|
|
|
|
})
|
2020-01-14 17:06:59 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods : {
|
2020-01-20 22:51:57 +01:00
|
|
|
handleSubmit(e) {
|
2020-01-14 17:06:59 +01:00
|
|
|
e.preventDefault()
|
|
|
|
|
2020-01-27 21:13:21 +01:00
|
|
|
this.form.post('/api/password/email', {returnError: true})
|
2020-01-19 22:29:36 +01:00
|
|
|
.then(response => {
|
|
|
|
|
2020-01-28 15:33:33 +01:00
|
|
|
this.success = response.data.status
|
2020-01-19 22:29:36 +01:00
|
|
|
})
|
|
|
|
.catch(error => {
|
2020-01-20 22:51:57 +01:00
|
|
|
if( error.response.data.requestFailed ) {
|
2020-01-28 15:33:33 +01:00
|
|
|
this.fail = error.response.data.requestFailed
|
2020-01-14 17:06:59 +01:00
|
|
|
}
|
2020-01-20 22:51:57 +01:00
|
|
|
else if( error.response.status !== 422 ) {
|
2020-01-21 08:43:11 +01:00
|
|
|
this.$router.push({ name: 'genericError', params: { err: error.response } });
|
2020-01-14 17:06:59 +01:00
|
|
|
}
|
2020-01-19 22:29:36 +01:00
|
|
|
});
|
|
|
|
|
2020-01-14 17:06:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|