diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2021-06-23 15:12:03 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2021-06-23 15:12:03 +0200 |
commit | 6030dbe064a00c70a33d9d098db0f050386ec0a7 (patch) | |
tree | 712c0fb7c40756504bcd4a8c0f0871dd1dadd6cf /core/templates/loginflow | |
parent | a1fe771a7d04ee66cc39dddf9aae26f85b67f62c (diff) | |
download | nextcloud-server-6030dbe064a00c70a33d9d098db0f050386ec0a7.tar.gz nextcloud-server-6030dbe064a00c70a33d9d098db0f050386ec0a7.zip |
Move header into h3
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'core/templates/loginflow')
-rw-r--r-- | core/templates/loginflow/authpicker.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/core/templates/loginflow/authpicker.php b/core/templates/loginflow/authpicker.php index 70bdfec7e08..b36fbb1d2f3 100644 --- a/core/templates/loginflow/authpicker.php +++ b/core/templates/loginflow/authpicker.php @@ -36,9 +36,12 @@ $urlGenerator = $_['urlGenerator']; ])) ?> </p> - <p class="warning"> - <?php print_unescaped($l->t('<strong>Security warning:</strong> 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> + <span class="warning"> + <h3><?php p('Security warning') ?></h3> + <p> + <?php p($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> + </span> <br/> |