aboutsummaryrefslogtreecommitdiff
path: root/src/components/login_form/login_form.js
diff options
context:
space:
mode:
authorwakarimasen <wakarimasen@airmail.cc>2017-03-08 18:28:41 +0100
committerwakarimasen <wakarimasen@airmail.cc>2017-03-08 18:28:41 +0100
commita6b6fe95c0fe2aa60ebbfca87fde47e629035c49 (patch)
treef1ce15596cef36aa03a0e6f41ee3c2e7f2633acd /src/components/login_form/login_form.js
parentccbfc64bfcaf5efd598af6987e304291e23def1c (diff)
Show visual feedback on login error, redirect on success
Diffstat (limited to 'src/components/login_form/login_form.js')
-rw-r--r--src/components/login_form/login_form.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/login_form/login_form.js b/src/components/login_form/login_form.js
index 827c704c..2ad5b0b5 100644
--- a/src/components/login_form/login_form.js
+++ b/src/components/login_form/login_form.js
@@ -1,13 +1,17 @@
const LoginForm = {
data: () => ({
- user: {}
+ user: {},
+ authError: false
}),
computed: {
loggingIn () { return this.$store.state.users.loggingIn }
},
methods: {
submit () {
- this.$store.dispatch('loginUser', this.user)
+ this.$store.dispatch('loginUser', this.user).then(
+ () => { this.$router.push('/main/friends')},
+ () => { this.authError = true }
+ )
}
}
}