mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +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"
|
type="password"
|
||||||
class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}"
|
class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}"
|
||||||
name="password"
|
name="password"
|
||||||
autocomplete="new-password"
|
autocomplete="current-password"
|
||||||
placeholder="{{__('Password')}}"
|
placeholder="{{__('Password')}}"
|
||||||
required>
|
required>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue