diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-07-06 21:26:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 21:26:08 +0200 |
commit | c5c251307e1a49846f84162e5ee909bfdae0912b (patch) | |
tree | 7c153ff2c22e00e6c27c3f5b43864974bff80a93 | |
parent | d8bd6cfe6bb76aba38f12ae3f6326ec20b68cc08 (diff) | |
parent | abec8a2c6317b208b659c1580893acb2aa0d6e33 (diff) | |
download | nextcloud-server-c5c251307e1a49846f84162e5ee909bfdae0912b.tar.gz nextcloud-server-c5c251307e1a49846f84162e5ee909bfdae0912b.zip |
Merge pull request #21706 from nextcloud/bugfix/21698/add-a-clear-abuse-message
Add a clear message why you could end up there
-rw-r--r-- | core/templates/loginflow/authpicker.php | 4 | ||||
-rw-r--r-- | core/templates/loginflowv2/authpicker.php | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/core/templates/loginflow/authpicker.php b/core/templates/loginflow/authpicker.php index 3b12fbe2f07..edcc5565d16 100644 --- a/core/templates/loginflow/authpicker.php +++ b/core/templates/loginflow/authpicker.php @@ -36,6 +36,10 @@ $urlGenerator = $_['urlGenerator']; ])) ?> </p> + <p class="info"> + <?php print_unescaped($l->t('If you are not trying to set up a new device or app, someone is trying to trick you into granting them access to your data. In this case do not proceed and instead contact your system administrator.')) ?> + </p> + <br/> <p id="redirect-link"> diff --git a/core/templates/loginflowv2/authpicker.php b/core/templates/loginflowv2/authpicker.php index ccc9162bbc3..a32787f22b8 100644 --- a/core/templates/loginflowv2/authpicker.php +++ b/core/templates/loginflowv2/authpicker.php @@ -35,6 +35,10 @@ $urlGenerator = $_['urlGenerator']; ])) ?> </p> + <p class="info"> + <?php print_unescaped($l->t('If you are not trying to set up a new device or app, someone is trying to trick you into granting them access to your data. In this case do not proceed and instead contact your system administrator.')) ?> + </p> + <br/> <p id="redirect-link"> |