diff options
author | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-06-06 16:36:10 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-06-13 15:34:52 +0200 |
commit | a6e45a8d0e1f3060b4e3ffa09270c791010f2459 (patch) | |
tree | 58459a369c30af1aef9c116b92ffc59ab8820cbb /core/lostpassword/templates | |
parent | e026b1dc19e7ad50901efe4544fa701a6a1bd341 (diff) | |
download | nextcloud-server-a6e45a8d0e1f3060b4e3ffa09270c791010f2459.tar.gz nextcloud-server-a6e45a8d0e1f3060b4e3ffa09270c791010f2459.zip |
use more stuff from core :)
Diffstat (limited to 'core/lostpassword/templates')
-rw-r--r-- | core/lostpassword/templates/lostpassword.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index 7548b4787ec..00dd139e71f 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -3,18 +3,18 @@ OCP\Util::addStyle('lostpassword', 'lostpassword'); ?> <form action="<?php print_unescaped($_['link']) ?>" method="post"> <fieldset> - <div class="update"><?php print_unescaped($l->t('You will receive a link to reset your password via Email.')); ?></div> + <div class="update"><?php p($l->t('You will receive a link to reset your password via Email.')); ?></div> <p> - <input type="text" name="user" id="user" placeholder="<?php print_unescaped($l->t( 'Username' )); ?>" value="" autocomplete="off" required autofocus /> - <label for="user" class="infield"><?php print_unescaped($l->t( 'Username' )); ?></label> + <input type="text" name="user" id="user" placeholder="<?php p($l->t( 'Username' )); ?>" value="" autocomplete="off" required autofocus /> + <label for="user" class="infield"><?php p($l->t( 'Username' )); ?></label> <img class="svg" src="<?php print_unescaped(image_path('', 'actions/user.svg')); ?>" alt=""/> <?php if ($_['isEncrypted']): ?> <br /> - <p class="warning"><?php print_unescaped($l->t("Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?")); ?><br /> + <p class="warning"><?php p($l->t("Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?")); ?><br /> <input type="checkbox" name="continue" value="Yes" /> - <?php print_unescaped($l->t('Yes, I really want to reset my password now')); ?></p> + <?php p($l->t('Yes, I really want to reset my password now')); ?></p> <?php endif; ?> </p> - <input type="submit" id="submit" value="<?php print_unescaped($l->t('Reset')); ?>" /> + <input type="submit" id="submit" value="<?php p($l->t('Reset')); ?>" /> </fieldset> </form> |