Prevent Browser From Autofill Password Fields
using readonly-attribute and remove it on focus (touch, tab, click)
HTML
<h1>Prevent Chrome etc. from autofilling in password and login fields.</h1>
<h2>using readonly-attribute and remove it on focus (touch, tab, click)</h2>
<h2>(now with fix for mobile Safari to show virtual keyboard)</h2>
<form>
<label for="email">E-Mail</label>
<input type="email" style="display: none" autocomplete="on" />
<input id="email" type="email" />
<br/>
<label for="pw">Password</label>
<input id="pw" type="password" />
<br/>
<input type="submit" value="Go!" />
</form>