I have a predicament where I need a standard text input box to act like a password input without the type=password attribute.
The reason being is the app for a specific reason does not want password managers to be triggered by it.
Basically I was thinking
<script>
var mypw ="";
</script>
<input type="text" onkeydown="updatethis(this)" onpaste="updatethis(this)">
After this I am lost, but somehow i want the pw to be stored in mypw and the input to just show a security char.
Again the need is very unique but I need to avoid password managers from triggering in this one scenario.