Accessibility: Name and Email inputs need autocomplete attributes
-
Hello,
It seems that there’s not a way to add autocomplete attributes to inputs in the form. This is what I’m seeing for the name and email fields:
<input type="text" name="esfpx_name" autocomplete="off" placeholder="" class="es-name" id="esfpx_name_0fe74ada6116e">
<input type="email" required="" class="es-email" name="esfpx_email" autocomplete="off" placeholder="" id="esfpx_email_0fe74ada6116e">The correct HTML for accessibility is:
<input type="text" name="esfpx_name" autocomplete="name" placeholder="" class="es-name" id="esfpx_name_0fe74ada6116e">
<input type="email" required="" class="es-email" name="esfpx_email" autocomplete="email" placeholder="" id="esfpx_email_0fe74ada6116e">Can you fix the plugin to include autocomplete attributes on the relevant fields? Here’s a list of available autocomplete values.
Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.