diff options
author | Jan C. Borchardt <hey@jancborchardt.net> | 2021-04-12 15:01:01 +0200 |
---|---|---|
committer | Jan C. Borchardt <hey@jancborchardt.net> | 2021-04-12 15:01:01 +0200 |
commit | bdd5667ff6ec66f8485e7d39087b0bee121d3482 (patch) | |
tree | fd241ee280791d375dcbdb6464ba9d4908f8bc58 /core/src | |
parent | 294ddf741ef1cea94a9b1ee731d3cf68c660cae5 (diff) | |
download | nextcloud-server-bdd5667ff6ec66f8485e7d39087b0bee121d3482.tar.gz nextcloud-server-bdd5667ff6ec66f8485e7d39087b0bee121d3482.zip |
Fix 'Log in with a device' link focusability
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/views/Login.vue | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/src/views/Login.vue b/core/src/views/Login.vue index 304bc883557..6218aa7fe8b 100644 --- a/core/src/views/Login.vue +++ b/core/src/views/Login.vue @@ -46,7 +46,9 @@ {{ t('core', 'Forgot password?') }} </a> <br> - <a v-if="hasPasswordless" @click.prevent="passwordlessLogin = true"> + <a v-if="hasPasswordless" + href="#" + @click.prevent="passwordlessLogin = true"> {{ t('core', 'Log in with a device') }} </a> </div> @@ -61,7 +63,7 @@ :is-https="isHttps" :has-public-key-credential="hasPublicKeyCredential" @submit="loading = true" /> - <a @click.prevent="passwordlessLogin = false"> + <a @click.prevent="passwordlessLogin = false" href="#"> {{ t('core', 'Back') }} </a> </div> |