I don't want my client to store their id and passwords in browsers, because the password field is an OTP.
I tried all the solutions of Prevent Browsers from storing passwords but nothing has worked for me
autocomplete="off" readonly onfocus="this.removeAttribute('readonly');"
autocomplete="new-password"
autocomplete="one-time-code"
These didn't worked.
I also created a hidden password field, it's not auto-filling the actual password field but on click of the password textbox browsers give suggestions which I don't want because it's an OTP.
Any other suggestions?