a0b9acee41
Add page titles everywhere Add global mixin to set page title Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/177
72 lines
2 KiB
Vue
72 lines
2 KiB
Vue
<template>
|
|
<div>
|
|
<h2 class="title has-text-centered">Reset your password</h2>
|
|
<div class="box">
|
|
<form @submit.prevent="submit" v-if="!isSuccess">
|
|
<div class="field">
|
|
<label class="label" for="email">E-mail address</label>
|
|
<div class="control">
|
|
<input v-focus type="email" class="input" id="email" name="email" placeholder="e.g. frederic@vikunja.io" v-model="passwordReset.email" required/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field is-grouped">
|
|
<div class="control">
|
|
<button type="submit" class="button is-primary" v-bind:class="{ 'is-loading': passwordResetService.loading}">Send me a password reset link</button>
|
|
<router-link :to="{ name: 'user.login' }" class="button">Login</router-link>
|
|
</div>
|
|
</div>
|
|
<div class="notification is-danger" v-if="errorMsg">
|
|
{{ errorMsg }}
|
|
</div>
|
|
</form>
|
|
<div v-if="isSuccess" class="has-text-centered">
|
|
<div class="notification is-success">
|
|
Check your inbox! You should have a mail with instructions on how to reset your password.
|
|
</div>
|
|
<router-link :to="{ name: 'user.login' }" class="button is-primary">Login</router-link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PasswordResetModel from '../../models/passwordReset'
|
|
import PasswordResetService from '../../services/passwordReset'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
passwordResetService: PasswordResetService,
|
|
passwordReset: PasswordResetModel,
|
|
errorMsg: '',
|
|
isSuccess: false
|
|
}
|
|
},
|
|
created() {
|
|
this.passwordResetService = new PasswordResetService()
|
|
this.passwordReset = new PasswordResetModel()
|
|
},
|
|
mounted() {
|
|
this.setTitle('Reset your password')
|
|
},
|
|
methods: {
|
|
submit() {
|
|
this.errorMsg = ''
|
|
this.passwordResetService.requestResetPassword(this.passwordReset)
|
|
.then(() => {
|
|
this.isSuccess = true
|
|
})
|
|
.catch(e => {
|
|
this.errorMsg = e.response.data.message
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.button {
|
|
margin: 0 0.4em 0 0;
|
|
}
|
|
</style>
|