mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 01:10:42 +08:00
Fix #675 - Implement semantic autocomplete for 2FA fields to prevent Firefox interference
Replace autocomplete="off" with autocomplete="one-time-code" in all 2FA components to resolve Firefox password manager interference with login buttons.
This commit is contained in:
parent
c40cb57def
commit
30cea182e5
3 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@
|
|||
id='auth_code'
|
||||
type='text'
|
||||
name='auth_code'
|
||||
autocomplete='off'
|
||||
autocomplete='one-time-code'
|
||||
class='mb-3 auth-input'/>
|
||||
|
||||
<scrm-button id='submit-2fa-code'
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<input [(ngModel)]="authCode"
|
||||
id='auth_code'
|
||||
type='text'
|
||||
autocomplete='off'
|
||||
autocomplete='one-time-code'
|
||||
name='auth_code'
|
||||
class='mb-2 mt-2 pl-0'>
|
||||
|
||||
|
|
|
@ -111,7 +111,7 @@
|
|||
id='auth_code'
|
||||
type='text'
|
||||
name='auth_code'
|
||||
autocomplete='off'
|
||||
autocomplete='one-time-code'
|
||||
class='mb-3 auth-input'/>
|
||||
|
||||
<scrm-button id='submit-2fa-code'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue