I remember seeing a way to have an such that the browser will not prompt the user to save the password. But I
<input type="password" placeholder="Enter New Password" autocomplete="new-password">
Here you go.
Here's the best answer, and the easiest! Put an extra password field in front of your input
field and set the display:none
, so that when the browser fills it in, it does it in an input
that you don't care about.
Change this:
<input type="password" name="password" size="25" class="input" id="password" value="">
to this:
<input type="password" style="display:none;">
<input type="password" name="password" size="25" class="input" id="password" value="">