Complete and fix Request/Reset password feature

This commit is contained in:
Bubka
2020-01-15 11:48:22 +01:00
parent 2326bc1245
commit aef68df370
4 changed files with 36 additions and 26 deletions

View File

@ -2,24 +2,24 @@
<div class="section">
<div class="columns is-mobile is-centered">
<div class="column is-two-thirds-tablet is-half-desktop is-one-third-widescreen is-one-quarter-fullhd">
<h1 class="title">{{ $t('auth.new_password') }}</h1>
<form method="POST" action="/password/reset">
<h1 class="title">{{ $t('auth.forms.new_password') }}</h1>
<form method="POST">
<div class="field">
<label class="label">{{ $t('auth.forms.email') }}</label>
<div class="control">
<input id="email" type="email" class="input" v-model="email" required />
<input id="email" type="email" class="input" v-model="email" disabled readonly />
</div>
<p class="help is-danger" v-if="validationErrors.email">{{ validationErrors.email.toString() }}</p>
</div>
<div class="field">
<label class="label">{{ $t('auth.forms.password') }}</label>
<label class="label">{{ $t('auth.forms.new_password') }}</label>
<div class="control">
<input id="password" type="password" class="input" v-model="password" required />
</div>
<p class="help is-danger" v-if="validationErrors.password">{{ validationErrors.password.toString() }}</p>
</div>
<div class="field">
<label class="label">{{ $t('auth.forms.password_confirmation') }}</label>
<label class="label">{{ $t('auth.forms.confirm_password') }}</label>
<div class="control">
<input id="password_confirmation" type="password" class="input" v-model="password_confirmation" required />
</div>
@ -27,13 +27,17 @@
</div>
<div class="field is-grouped">
<div class="control">
<button type="submit" class="button is-link" @click="handleSubmit">{{ $t('auth.register') }}</button>
<button type="submit" class="button is-link" @click="handleSubmit">{{ $t('auth.forms.change_password') }}</button>
</div>
<div class="control">
<router-link :to="{ name: 'login' }" class="button is-text">{{ $t('commons.cancel') }}</router-link>
</div>
</div>
</form>
<br />
<span class="tag is-danger" v-if="errorMessage">
{{ errorMessage }}
</span>
</div>
</div>
</div>
@ -43,11 +47,12 @@
export default {
data(){
return {
token : '',
email : '',
password : '',
password_confirmation : '',
validationErrors: {}
token : '',
validationErrors: {},
errorMessage: ''
}
},
@ -60,26 +65,24 @@
handleSubmit(e) {
e.preventDefault()
axios.post('api/password/reset', {
this.validationErrors = {}
axios.post('/api/password/reset', {
email: this.email,
password: this.password,
password_confirmation : this.password_confirmation,
token: this.token
})
.then(response => {
console.log(response)
// localStorage.setItem('user',response.data.message.name)
// localStorage.setItem('jwt',response.data.message.token)
// if (localStorage.getItem('jwt') != null){
// this.$router.go('/');
// }
this.$router.go('/');
})
.catch(error => {
console.log(error.response)
if( error.response.data.errors ) {
this.validationErrors = error.response.data.errors
}
else if( error.response.data.resetFailed ) {
this.errorMessage = error.response.data.resetFailed
}
else {
this.$router.push({ name: 'genericError', params: { err: error.response.data.message } });
}