2

Add autocomplete attribute to 2 step authentication field when logging in


D
Dwight

Would it be possible to add an autocomplete attribute to the two-step authentication login page? This would help in autofilling a code on devices that can generate it. Setting it as one-time-code should suffice and allow browsers/apps to autofill the required code.

Would be nice to have that as a default to make the process a bit more streamlined. Thanks!

For example:
Replace:
<input type="text" id="code" placeholder="Code" class="Input__Text">
With:
<input type="text" id="code" autocomplete="one-time-code" placeholder="Code" class="Input__Text">

A