diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-10-25 15:02:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-25 15:02:14 +0200 |
commit | 9f5e1648c106893425790385b8741499ae08f2b6 (patch) | |
tree | ce111a38361dcff42130e4c4b78fb94b6d797d75 | |
parent | e0c09076deca4bf74457502f6625ad34ecb95965 (diff) | |
parent | b9e8c8943ea97a0151ced7a444d740e6392accb1 (diff) | |
download | nextcloud-server-9f5e1648c106893425790385b8741499ae08f2b6.tar.gz nextcloud-server-9f5e1648c106893425790385b8741499ae08f2b6.zip |
Merge pull request #6947 from nextcloud/fix_6821
Use new-password as autocomplete on share auth page
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index d9f19bbb579..20e200ef1ca 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -17,7 +17,7 @@ <input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" /> <input type="password" name="password" id="password" placeholder="<?php p($l->t('Password')); ?>" value="" - autocomplete="off" autocapitalize="off" autocorrect="off" + autocomplete="new-password" autocapitalize="off" autocorrect="off" autofocus /> <input type="submit" id="password-submit" class="svg icon-confirm input-button-inline" value="" disabled="disabled" /> |