Skip to content
Snippets Groups Projects
Commit 9e59e64c authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #7421 from owncloud/password-input

disable autocomplete for shared link password input, fix #7419
parents d4f15853 6c5cc463
Branches
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment