This commit is contained in:
2020-11-19 22:56:26 +00:00
parent 096adaaea6
commit a0ab96fffc
6 changed files with 66 additions and 18 deletions

View File

@@ -295,6 +295,14 @@ export default {
async created() {
let vm = this;
//debugger;
//reset password redirects here with preset creds
//this will help the user identify it and hopefully remember it
if (vm.$route.params.presetLogin) {
vm.input.username = vm.$route.params.presetLogin;
vm.input.password = vm.$route.params.presetPassword;
}
vm.smallLogoUrl = window.$gz.api.logoUrl("small");
vm.mediumLogoUrl = window.$gz.api.logoUrl("medium");
vm.largeLogoUrl = window.$gz.api.logoUrl("large");