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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2016-08-04 17:07:56 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2016-08-04 17:07:56 +0300
commit239d29ea341abbd0f6d149c47ba853743632166a (patch)
tree32135b8a4e728f1bad52310ad8f63ada45ddafa8 /templates
parentc871b2e2c313d82c2c490f784f655bd4f8f76432 (diff)
fix redirect template design
Diffstat (limited to 'templates')
-rw-r--r--templates/redirect.php21
1 files changed, 13 insertions, 8 deletions
diff --git a/templates/redirect.php b/templates/redirect.php
index 0c2d59120..73deed3d6 100644
--- a/templates/redirect.php
+++ b/templates/redirect.php
@@ -21,26 +21,31 @@
*
*/
?>
-<?php /** @var array $_ */?>
+<?php /** @var array $_ */ ?>
<?php if (isset($_['authorizedRedirect']) && ($_['authorizedRedirect'])): ?>
<?php script('mail', 'autoredirect'); ?>
<div class="error" style="text-align: center;">
- <div class="icon-loading"
- style="margin: 0 auto;"></div>
+ <div class="icon-loading-dark"
+ style="height: 60px;"></div>
<p>
<a href="<?php p($_['url']) ?>" rel="noreferrer" id="redirectLink"
- style="color: #fff !important;">
- <?php p($l->t('Forwarding you to %s - click here if you are not automatically redirected within the next few seconds.', array($_['urlHost'])));?>
+ style="font-weight: 300 !important">
+ <h2><?php p($l->t('Forwarding to %s', array($_['urlHost']))); ?></h2>
+ <?php p($l->t('Click here if you are not automatically redirected within the next few seconds.')); ?>
</a>
</p>
</div>
<?php else: ?>
<div class="error">
- <h2><?php p($l->t('Redirect'));?></h2>
+ <h2><?php p($l->t('Redirect')); ?></h2>
<p><?php p($l->t('The link leads to %s', array($_['urlHost']))); ?></p>
- <p><?php print_unescaped($l->t('If you don’t want to visit that page, you can return to <a href="%s">Mail</a>.', array($_['mailURL']))); ?></p>
+ <p><?php print_unescaped($l->t('If you don’t want to visit that page, you can return to <a href="%s">Mail</a>.',
+ array($_['mailURL'])));
+ ?></p>
<br/>
- <a href="<?php p($_['url']) ?>" class="button" rel="noreferrer" id="redirectLink"><?php p($l->t('Continue to %s', array($_['urlHost']))); ?></a>
+ <a href="<?php p($_['url']) ?>" class="button" rel="noreferrer" id="redirectLink"><?php p($l->t('Continue to %s',
+ array($_['urlHost'])));
+ ?></a>
</div>
<?php endif; ?>