I recently implemented an ajax-based login form on my website, but it seems that browsers are not recognizing it as a login form and therefore not offering to remember passwords for easier login access.
Once the submit button is clicked, the entered values are sent to the server for verification. If the check is successful, a response is sent back, setting a session before redirecting the user to the members area using JavaScript. I suspect that the issue may lie in the simplicity of the HTML code.
HTML:
<input type='text' class='email'>
<input type='password' class='password'>
<a class='submitBtn'>SUBMIT</a>
Appreciate any insights or suggestions!