diff options
author | Volkan Gezer <volkangezer@gmail.com> | 2014-05-27 02:11:58 +0200 |
---|---|---|
committer | Volkan Gezer <volkangezer@gmail.com> | 2014-05-27 12:29:08 +0200 |
commit | 46555b50a123ebd367e28f0a4e67034bd3b086b6 (patch) | |
tree | 2451119432848b50d5ad8fbee2037ecb6af0c11d /core/lostpassword | |
parent | a34491e28895f84d220cb5dbbbe4273172334716 (diff) | |
download | nextcloud-server-46555b50a123ebd367e28f0a4e67034bd3b086b6.tar.gz nextcloud-server-46555b50a123ebd367e28f0a4e67034bd3b086b6.zip |
fix warning text and margin
Diffstat (limited to 'core/lostpassword')
-rw-r--r-- | core/lostpassword/css/lostpassword.css | 7 | ||||
-rw-r--r-- | core/lostpassword/templates/lostpassword.php | 6 |
2 files changed, 4 insertions, 9 deletions
diff --git a/core/lostpassword/css/lostpassword.css b/core/lostpassword/css/lostpassword.css index 85cce9f9407..b7f7023648d 100644 --- a/core/lostpassword/css/lostpassword.css +++ b/core/lostpassword/css/lostpassword.css @@ -1,11 +1,6 @@ #body-login -input[type="text"], -input[type="submit"] { - margin: 5px 0; -} - input[type="text"]#user{ - padding-right: 12px; + padding-right: 20px; padding-left: 41px; } diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index 83a23f7b239..d0fed38ee27 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -21,10 +21,10 @@ OCP\Util::addStyle('lostpassword', 'lostpassword'); <label for="user" class="infield"><?php print_unescaped($l->t( 'Username' )); ?></label> <img class="svg" src="<?php print_unescaped(image_path('', 'actions/user.svg')); ?>" alt=""/> <?php if ($_['isEncrypted']): ?> - <br /><br /> - <?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 /> + <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 /> <input type="checkbox" name="continue" value="Yes" /> - <?php print_unescaped($l->t('Yes, I really want to reset my password now')); ?><br/><br/> + <?php print_unescaped($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')); ?>" /> |