diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-14 14:27:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 14:27:09 +0200 |
commit | 317521c7e7f5dc3c2bbaf55cada8fb84b905d8a6 (patch) | |
tree | 5c6366e61aff9c833be03d26fe5927919a9d8fa0 | |
parent | 95b7fa306ef786b43286abdcab26916c503e4ec6 (diff) | |
parent | 44c67451599c1d0470f61f2705c3946f4ec31d99 (diff) | |
download | nextcloud-server-317521c7e7f5dc3c2bbaf55cada8fb84b905d8a6.tar.gz nextcloud-server-317521c7e7f5dc3c2bbaf55cada8fb84b905d8a6.zip |
Merge pull request #6091 from nextcloud/authpage-design
Add heading to account access page
-rw-r--r-- | core/templates/loginflow/authpicker.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/templates/loginflow/authpicker.php b/core/templates/loginflow/authpicker.php index c427d657e4a..810c32b4f09 100644 --- a/core/templates/loginflow/authpicker.php +++ b/core/templates/loginflow/authpicker.php @@ -28,8 +28,12 @@ $urlGenerator = $_['urlGenerator']; ?> <div class="picker-window"> + <h2><?php p($l->t('Account access')) ?></h2> <p class="info"> - <?php p($l->t('You are about to grant "%s" access to your %s account.', [$_['client'], $_['instanceName']])) ?> + <?php print_unescaped($l->t('You are about to grant %s access to your %s account.', [ + '<strong>' . \OCP\Util::sanitizeHTML($_['client']) . '</strong>', + \OCP\Util::sanitizeHTML($_['instanceName']) + ])) ?> </p> <br/> |