JSFiddle - React, Tailwind, and code Playground
HTML
Step 1: Use this form first, and save the password, then right-click and hit "back".
<form action="/echo/html/">
<input name="newu" />
<input type="password" name="newp" />
<input type="submit" />
</form>
Step 2: Notice that this gets filled in, even though it has a different name.
<form action="/echo/html/">
<input name="hmdln" />
<input type="password" name="pass" />
<input type="submit" />
</form>
Step 3: This still *allows* you to fill in the password, but it doesn't auto-fill it for you.
<form action="/echo/html/" autocomplete="off">
<input name="username" />
<input type="password" name="pass" />
<input type="submit" />
</form>