I have an app where you can configure server files. One server file is the users one, that contains the hashed password. The admin can create all the users he wants in the website form.
I'm using a simple input with type="password" so the admin can benefit of native browser password handling (like the "show password" button on IE11 or showing the last written letter on smartphones), then the password is hashed and sent to the server. The problem here is that the browser asks to save the password, autofill it and such. I don't want the autocomplete=off hack because some browsers override it. I would like to know a way to tell the browser that the password is not an input to remember but just a hidden text, like a textbox or whatever.
I can create a simple input and overlay a password input, and also I can add a password font that will replace all letters for dots, but, as I said, I prefer to keep browser password handling.