diff --git a/src/views/desktop/LoginPage.vue b/src/views/desktop/LoginPage.vue index 5521114e..96e5b7d0 100644 --- a/src/views/desktop/LoginPage.vue +++ b/src/views/desktop/LoginPage.vue @@ -88,12 +88,14 @@
- + {{ tt('Use on Mobile Device') }} + :class="{ 'disabled': !isUserForgetPasswordEnabled() || loggingInByPassword || loggingInByOAuth2 || verifying }"> {{ tt('Forget Password?') }}
@@ -127,7 +129,7 @@ {{ tt('Don\'t have an account?') }} + :class="{ 'disabled': !isUserRegistrationEnabled() || loggingInByPassword || loggingInByOAuth2 || verifying }"> {{ tt('Create an account') }} diff --git a/src/views/mobile/LoginPage.vue b/src/views/mobile/LoginPage.vue index 1aca6b45..c43bd9bc 100644 --- a/src/views/mobile/LoginPage.vue +++ b/src/views/mobile/LoginPage.vue @@ -14,6 +14,7 @@ type="text" autocomplete="username" clear-button + :disabled="loggingInByPassword || loggingInByOAuth2" :label="tt('Username')" :placeholder="tt('Your username or email')" v-model:value="username" @@ -23,6 +24,7 @@ type="password" autocomplete="current-password" clear-button + :disabled="loggingInByPassword || loggingInByOAuth2" :label="tt('Password')" :placeholder="tt('Your password')" v-model:value="password" @@ -35,12 +37,12 @@ @@ -58,13 +60,13 @@ @click="loggingInByOAuth2 = true" v-if="isOAuth2Enabled()"> {{ tt('Don\'t have an account?') }}  - + - +