Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-02-26 17:48:15 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-02-27 01:21:36 +0400
commit61a37331ceb155a6b20a2242d8f3dc9057c30d3e (patch)
treea034c932f10e2f0f45da3a0cd24d861c323fbb26 /apps/files_sharing
parentd265d290c378d13cff37722e90ed0280c44041fb (diff)
disable autocomplete for shared link password input, fix #7419
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/templates/authenticate.php5
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>