Actions
Feature #41927
closedEnable browser autocomplete for 2FA input fields
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Description
The current HTML 2FA input has autocomplete disabled:
<input type="text" name="twofa_code" id="twofa_code" tabindex="1" autocomplete="off" autofocus="autofocus">
To assist password managers, we should switch it to one-time-code
<input type="text" name="twofa_code" id="twofa_code" tabindex="1" autocomplete="one-time-code" autofocus="autofocus">
Files
Related issues
Updated by Go MAEDA 16 days ago
- File set_one-time-code_for-twofa-input-fields.patch set_one-time-code_for-twofa-input-fields.patch added
- Subject changed from Enable 2FA autocomplete to Enable browser autocomplete for 2FA input fields
Here is a patch.
Updated by Go MAEDA 14 days ago
- Related to Feature #41937: Enable browser autocomplete for login input fields added
Updated by Marius BÄ‚LTEANU 11 days ago
- Target version changed from 6.1.0 to 5.1.5
I've merged this to stable branches because it is a small change and quite useful.
Actions