mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-18 11:03:17 +00:00
Fix Sudo Confirm Password Autofill for Password Managers
Password managers are looking for "current-password" in the autocomplete tag. This fixes issue https://github.com/pixelfed/pixelfed/issues/5258
This commit is contained in:
parent
38d7b04d41
commit
210a1d3ae3
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@
|
|||
type="password"
|
||||
class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}"
|
||||
name="password"
|
||||
autocomplete="new-password"
|
||||
autocomplete="current-password"
|
||||
placeholder="{{__('Password')}}"
|
||||
required>
|
||||
|
||||
|
|
Loading…
Reference in a new issue