I have a simple email/password HTML form that I would like chrome to prompt to save the password. I don't know why it won't ask for it. Here is the code:
<form name="loginForm" action="">
E-Mail:<br><input type="email" name="email" required placeholder="E-mail"/><br>
Password:<br><input id="pwdInputBox" type="password" name="password" required/><br>
<input id="loginFormSubmitButton" type="button" value="Login" onclick="loginFormHandler();"/>
</form>
Can someone help me?