1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<template>
<section class="section is-fullheight is-register">
<div class="container">
<h1 class="title">
Dashboard Access
</h1>
<h2 class="subtitle mb5">
Register for a new account
</h2>
<div class="columns">
<div class="column is-4 is-offset-4">
<b-field>
<b-input v-model="username"
type="text"
placeholder="Username" />
</b-field>
<b-field>
<b-input v-model="password"
type="password"
placeholder="Password"
password-reveal />
</b-field>
<b-field>
<b-input v-model="rePassword"
type="password"
placeholder="Re-type Password"
password-reveal
@keyup.enter.native="register" />
</b-field>
<p class="control has-addons is-pulled-right">
<router-link to="/login"
class="is-text">Already have an account?</router-link>
<button class="button is-primary big ml1"
:disabled="isLoading"
@click="register">Register</button>
</p>
</div>
</div>
</div>
</section>
</template>
<script>
import { mapState } from 'vuex';
export default {
name: 'Register',
data() {
return {
username: null,
password: null,
rePassword: null,
isLoading: false
};
},
computed: mapState(['config', 'auth']),
metaInfo() {
return { title: 'Register' };
},
methods: {
async register() {
if (this.isLoading) return;
if (!this.username || !this.password || !this.rePassword) {
this.$store.dispatch('alert', {
text: 'Please fill all fields before attempting to register.',
error: true
});
return;
}
if (this.password !== this.rePassword) {
this.$store.dispatch('alert', {
text: "Passwords don't match",
error: true
});
return;
}
this.isLoading = true;
try {
const response = await this.$axios.$post(`auth/register`, {
username: this.username,
password: this.password
});
this.$store.dispatch('alert', { text: response.message });
return this.$router.push('/login');
} catch (error) {
//
} finally {
this.isLoading = false;
}
}
}
};
</script>
|