Hey guys!
I am not sure if I can do it on the main source code myself but here is the deal.
When 2FA code is needed all users who use apple passwords (majority in my case), they have open the app on computer or phone, then they copy code and go back to Safari to paste it.
Very lengthy, there is an autocomplete from apple, that inserts the code automatically from the rolling one time code!
Please add attribute:
autocomplete="one-time-code"
I know that linkedIn added using this way:
<input type="text" autocomplete="one-time-code" name="otp" id="otp">
But as far as I know we need just autocomplete="one-time-code" to be added to 'code' input.
I tried modifying in console and it worked! Browser just inputs the code!
Please, let's add this.
yuri
Thank you
Old code:
<input type="text" data-name="field-code" class="form-control" autocapitalize="off" spellcheck="false" tabindex="1" autocomplete="new-password" maxlength="7">
Replace with:
<input type="text" data-name="field-code" class="form-control" autocapitalize="off" spellcheck="false" tabindex="1" autocomplete="one-time-code" maxlength="7">
I am not sure if I can do it on the main source code myself but here is the deal.
When 2FA code is needed all users who use apple passwords (majority in my case), they have open the app on computer or phone, then they copy code and go back to Safari to paste it.
Very lengthy, there is an autocomplete from apple, that inserts the code automatically from the rolling one time code!
Please add attribute:
autocomplete="one-time-code"
I know that linkedIn added using this way:
<input type="text" autocomplete="one-time-code" name="otp" id="otp">
But as far as I know we need just autocomplete="one-time-code" to be added to 'code' input.
I tried modifying in console and it worked! Browser just inputs the code!
Please, let's add this.
yuri
Thank you
Old code:
<input type="text" data-name="field-code" class="form-control" autocapitalize="off" spellcheck="false" tabindex="1" autocomplete="new-password" maxlength="7">
Replace with:
<input type="text" data-name="field-code" class="form-control" autocapitalize="off" spellcheck="false" tabindex="1" autocomplete="one-time-code" maxlength="7">
Comment