When using a text input and a password input in my single page app, Chrome often prompts to remember the information for autofill. However, I am encountering an issue where it doesn't actually autofill the information.
Does anyone know how to troubleshoot this and get it to work properly?
My application is a single page app and all requests are made via AJAX.
Here are my simple input fields:
<input type="text" placeholder="email" autocomplete="on" />
<input type="password" placeholder="password" autocomplete="on" />
I have tried adding autocomplete="on"
but it seems like it may not be working due to my lack of form usage. Since I only use Ajax requests, what would be the best way to ensure autofill works correctly?