summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/StartPageLogin.vue
diff options
context:
space:
mode:
authorJannik Schönartz2019-02-23 06:37:14 +0100
committerJannik Schönartz2019-02-23 06:37:14 +0100
commitd2e1a80e2c7a4d807cb30899c0f2f20127396687 (patch)
tree1d648a3302acc9815404b2ed375b90f0dc518841 /webapp/src/components/StartPageLogin.vue
parent[webapp/router] Fix forwarding bug while loggedout calling / (diff)
downloadbas-d2e1a80e2c7a4d807cb30899c0f2f20127396687.tar.gz
bas-d2e1a80e2c7a4d807cb30899c0f2f20127396687.tar.xz
bas-d2e1a80e2c7a4d807cb30899c0f2f20127396687.zip
[Account] Add password change functionality
[server] Remove hased password from userinfo api Implement change password function [webapp] Fix z-index for the fixed tab bar (udo) Implement userinfo and change password in the account module
Diffstat (limited to 'webapp/src/components/StartPageLogin.vue')
-rw-r--r--webapp/src/components/StartPageLogin.vue2
1 files changed, 2 insertions, 0 deletions
diff --git a/webapp/src/components/StartPageLogin.vue b/webapp/src/components/StartPageLogin.vue
index b9ed5ca..87d4054 100644
--- a/webapp/src/components/StartPageLogin.vue
+++ b/webapp/src/components/StartPageLogin.vue
@@ -87,6 +87,8 @@ export default {
this.usernameError = true
} else if (error.response.data.status === 'PASSWORD_INVALID') {
this.passwordError = true
+ } else {
+ this.$snackbar({ color: 'error', text: error.response.data.error_message })
}
this.$refs.form.validate()
})