Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2021-06-23 16:12:03 +0300
committerLukas Reschke <lukas@statuscode.ch>2021-06-23 16:12:03 +0300
commit6030dbe064a00c70a33d9d098db0f050386ec0a7 (patch)
tree712c0fb7c40756504bcd4a8c0f0871dd1dadd6cf /core/templates
parenta1fe771a7d04ee66cc39dddf9aae26f85b67f62c (diff)
Move header into h3
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/loginflow/authpicker.php9
-rw-r--r--core/templates/loginflowv2/authpicker.php9
2 files changed, 12 insertions, 6 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/>
diff --git a/core/templates/loginflowv2/authpicker.php b/core/templates/loginflowv2/authpicker.php
index 01f31f5f52b..06ed0b0f4e5 100644
--- a/core/templates/loginflowv2/authpicker.php
+++ b/core/templates/loginflowv2/authpicker.php
@@ -35,9 +35,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/>