diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2015-09-02 12:32:16 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2015-09-02 12:32:16 +0200 |
commit | ba9457264fb1dcc05e3cf4dd6b9b21ba47cb30f9 (patch) | |
tree | 1af3cc068c4c9f8cc98438c97ce4388c47da29b0 | |
parent | 73b43db4f92e76a481ec3855354aef84f6b51c5e (diff) | |
download | nextcloud-server-ba9457264fb1dcc05e3cf4dd6b9b21ba47cb30f9.tar.gz nextcloud-server-ba9457264fb1dcc05e3cf4dd6b9b21ba47cb30f9.zip |
add title attribute for the login button
-rw-r--r-- | core/templates/login.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index 50ca6febf08..513988876e1 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -57,7 +57,7 @@ script('core', [ <img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/> </p> - <input type="submit" id="submit" class="login primary icon-confirm" value="" disabled="disabled"/> + <input type="submit" id="submit" class="login primary icon-confirm" title="<?php p($l->t('Log in')); ?>" value="" disabled="disabled"/> <?php if (isset($_['invalidpassword']) && ($_['invalidpassword'])): ?> <a id="lost-password" class="warning" href=""> |