diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-26 14:48:15 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-26 14:48:15 +0100 |
commit | 6c5cc4638008d08f4f933db775348fe9d1db57f9 (patch) | |
tree | 2fb07ed5149fcea937df2d0c662653c2df554175 | |
parent | 59df3ffdf4647fcff1996017723af8c5eca72522 (diff) | |
download | nextcloud-server-6c5cc4638008d08f4f933db775348fe9d1db57f9.tar.gz nextcloud-server-6c5cc4638008d08f4f933db775348fe9d1db57f9.zip |
disable autocomplete for shared link password input, fix #7419
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 928be93fc96..19b1fb27630 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -8,7 +8,10 @@ <?php endif; ?> <p class="infield"> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> - <input type="password" name="password" id="password" placeholder="" value="" autofocus /> + <input type="password" name="password" id="password" + placeholder="" value="" + autocomplete="off" autocapitalize="off" autocorrect="off" + autofocus /> <input type="submit" value="" class="svg icon icon-confirm" /> </p> </fieldset> |