mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
disable autocomplete for shared link password input, fix #7419
This commit is contained in:
parent
59df3ffdf4
commit
6c5cc46380
1 changed files with 4 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue