vikunja-frontend/src/views/user/Register.vue

106 lines
3.0 KiB
Vue
Raw Normal View History

2018-09-06 17:46:38 +00:00
<template>
2018-11-01 21:34:29 +00:00
<div>
<h2 class="title has-text-centered">Register</h2>
2018-11-01 21:34:29 +00:00
<div class="box">
<form id="registerform" @submit.prevent="submit">
<div class="field">
<label class="label" for="username">Username</label>
2018-11-01 21:34:29 +00:00
<div class="control">
<input v-focus type="text" id="username" class="input" name="username" placeholder="e.g. frederick" v-model="credentials.username" required/>
2018-09-06 18:15:49 +00:00
</div>
2018-11-01 21:34:29 +00:00
</div>
<div class="field">
<label class="label" for="email">E-mail address</label>
2018-11-01 21:34:29 +00:00
<div class="control">
<input type="email" class="input" id="email" name="email" placeholder="e.g. frederic@vikunja.io" v-model="credentials.email" required/>
2018-09-08 20:27:13 +00:00
</div>
2018-11-01 21:34:29 +00:00
</div>
<div class="field">
<label class="label" for="password1">Password</label>
2018-11-01 21:34:29 +00:00
<div class="control">
<input type="password" class="input" id="password1" name="password1" placeholder="e.g. ••••••••••••" v-model="credentials.password" required/>
2018-09-08 20:27:13 +00:00
</div>
2018-11-01 21:34:29 +00:00
</div>
<div class="field">
<label class="label" for="password2">Retype your password</label>
2018-11-01 21:34:29 +00:00
<div class="control">
<input type="password" class="input" id="password2" name="password2" placeholder="e.g. ••••••••••••" v-model="credentials.password2" required/>
2018-09-06 18:15:49 +00:00
</div>
2018-11-01 21:34:29 +00:00
</div>
2018-09-06 18:15:49 +00:00
2018-11-01 21:34:29 +00:00
<div class="field is-grouped">
<div class="control">
<button type="submit" class="button is-primary" v-bind:class="{ 'is-loading': loading}">Register</button>
<router-link :to="{ name: 'user.login' }" class="button">Login</router-link>
2018-09-06 18:15:49 +00:00
</div>
2018-11-01 21:34:29 +00:00
</div>
<div class="notification is-info" v-if="loading">
Loading...
</div>
<div class="notification is-danger" v-if="errorMessage !== ''">
{{ errorMessage }}
2018-11-01 21:34:29 +00:00
</div>
</form>
2018-09-06 18:15:49 +00:00
</div>
2018-09-06 17:46:38 +00:00
</div>
</template>
<script>
import router from '../../router'
import {mapState} from 'vuex'
import {ERROR_MESSAGE, LOADING} from '../../store/mutation-types'
2018-09-06 17:46:38 +00:00
export default {
data() {
return {
credentials: {
username: '',
2018-09-08 20:27:13 +00:00
email: '',
password: '',
password2: '',
},
}
},
beforeMount() {
// Check if the user is already logged in, if so, redirect him to the homepage
if (this.authenticated) {
router.push({name: 'home'})
}
},
mounted() {
this.setTitle('Register')
},
computed: mapState({
authenticated: state => state.auth.authenticated,
loading: LOADING,
errorMessage: ERROR_MESSAGE,
}),
methods: {
submit() {
this.$store.commit(LOADING, true)
this.$store.commit(ERROR_MESSAGE, '')
2018-09-08 20:27:13 +00:00
if (this.credentials.password2 !== this.credentials.password) {
this.$store.commit(ERROR_MESSAGE, 'Passwords don\'t match.')
this.$store.commit(LOADING, false)
2018-09-08 20:27:13 +00:00
return
}
const credentials = {
username: this.credentials.username,
email: this.credentials.email,
password: this.credentials.password
}
2018-09-06 17:46:38 +00:00
this.$store.dispatch('auth/register', credentials)
}
}
}
2018-09-06 17:46:38 +00:00
</script>
<style scoped>
2018-09-08 20:27:13 +00:00
.button {
margin: 0 0.4em 0 0;
}
2018-09-06 17:46:38 +00:00
</style>