diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-12 18:43:09 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-12 18:43:09 +0200 |
commit | e16cf0c45f33a3be95c70a75492d80282bde0e55 (patch) | |
tree | db6ec09d4fbb4252bc66694b85570bf603f180d5 /core/templates | |
parent | 326de6f9b4473f68e4c0237f0b6fb43111cda0c5 (diff) | |
download | nextcloud-server-e16cf0c45f33a3be95c70a75492d80282bde0e55.tar.gz nextcloud-server-e16cf0c45f33a3be95c70a75492d80282bde0e55.zip |
more understandable 'Wrong password' feedback
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/login.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index 1586c1117dd..f942e02dc86 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -58,7 +58,7 @@ script('core', [ <?php if (isset($_['invalidpassword']) && ($_['invalidpassword'])): ?> <a id="lost-password" class="warning" href=""> - <?php p($l->t('Forgot your password? Reset it!')); ?> + <?php p($l->t('Wrong password. Reset it?')); ?> </a> <?php endif; ?> <?php if ($_['rememberLoginAllowed'] === true) : ?> @@ -83,4 +83,3 @@ script('core', [ </fieldset> </form> <?php } - |