(auth) error about broken apple auth

This commit is contained in:
Andrea Vos 2024-05-15 21:07:32 +02:00
parent 673ed465ac
commit 90eac5ad66
3 changed files with 14 additions and 2 deletions

View File

@ -579,6 +579,8 @@ user:
brokenNotice: > brokenNotice: >
We're having technical problems with the authentication method… We're having technical problems with the authentication method…
If it doesn't work for you, please log in with email (or another method). If it doesn't work for you, please log in with email (or another method).
oauthError: >
An error occurred when trying to authenticate… Please try again or use a different authentication method.
code: code:
action: 'Validate' action: 'Validate'
invalid: 'Invalid code.' invalid: 'Invalid code.'

View File

@ -755,6 +755,8 @@ user:
brokenNotice: > brokenNotice: >
We're having technical problems with the authentication method… We're having technical problems with the authentication method…
If it doesn't work for you, please log in with email (or another method). If it doesn't work for you, please log in with email (or another method).
oauthError: >
An error occurred when trying to authenticate… Please try again or use a different authentication method.
code: code:
action: 'Validate' action: 'Validate'
invalid: 'Invalid code.' invalid: 'Invalid code.'

View File

@ -1,6 +1,14 @@
<template> <template>
<Homepage v-if="$config.header" /> <div>
<SelectVersion v-else /> <div v-if="$route.query.error" class="container pt-md-4">
<div class="alert alert-danger">
<Icon v="heart-broken"/>
<T>user.login.oauthError</T>
</div>
</div>
<Homepage v-if="$config.header" />
<SelectVersion v-else />
</div>
</template> </template>
<script> <script>