diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-10-06 16:48:10 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-10-06 16:48:10 +0200 |
commit | 3141680febeaed14548c876c2a713ee23801c434 (patch) | |
tree | e981a33609b869cbff45ae28e060bfa12487339a /core/templates/login.php | |
parent | 66ae43880b7d898e54a47d3a4651684d85a1e951 (diff) | |
download | nextcloud-server-3141680febeaed14548c876c2a713ee23801c434.tar.gz nextcloud-server-3141680febeaed14548c876c2a713ee23801c434.zip |
bring back dedicated log in button to make log in more usable
Diffstat (limited to 'core/templates/login.php')
-rw-r--r-- | core/templates/login.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index 49fa0dd6aff..46e78576a1f 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -53,7 +53,6 @@ script('core', [ <?php p($_['user_autofocus'] ? '' : 'autofocus'); ?> autocomplete="on" autocapitalize="off" autocorrect="off" required tabindex="2"> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> - <input type="submit" id="submit" class="login primary icon-confirm" title="<?php p($l->t('Log in')); ?>" value="" disabled="disabled" tabindex="4" /> </p> <?php if (!empty($_['invalidpassword']) && !empty($_['canResetPassword'])) { ?> @@ -75,6 +74,9 @@ script('core', [ <label for="remember_login"><?php p($l->t('Stay logged in')); ?></label> </div> <?php endif; ?> + + <input type="submit" id="submit" class="login primary icon-confirm-white" title="" value="<?php p($l->t('Log in')); ?>" disabled="disabled" tabindex="4" /> + <input type="hidden" name="timezone-offset" id="timezone-offset"/> <input type="hidden" name="timezone" id="timezone"/> <input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>"> |