diff --git a/src/views/Login.vue b/src/views/Login.vue index 0b62e23..32dfaec 100644 --- a/src/views/Login.vue +++ b/src/views/Login.vue @@ -26,6 +26,11 @@
Incorrect username or password. Please try again.
+
+ Skip signin and go to Homepage +
@@ -65,6 +70,10 @@ export default { if (!this.authenticated) { this.showErrorMessage = true; } + }, + skipSignin() { + this.$emit("authenticated", true); + this.$router.replace({ name: "home" }); } } }; @@ -83,6 +92,10 @@ export default { margin-top: 15px; font-size: 85%; } + + .skip-signin { + margin-top: 50px; + } } .form-signin {