A few errors thrown when trying to validate the HTML at w3.org. Was wondering, since we go out of our way to validate our HTML, if there was a suggestion on a workaround to make this compliant with W3C standards?
value of attribute "type" cannot be "email"; must be one of "text", "password", "checkbox", "radio", "submit", "reset", "file", "hidden", "image", "button"
…e='input_4' id='input_1_4' type='email' value='' class='medium' tabindex='4' /…
The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.
and
value of attribute "type" cannot be "tel"; must be one of "text", "password", "checkbox", "radio", "submit", "reset", "file", "hidden", "image", "button"
…ame='input_6' id='input_1_6' type='tel' value='' class='medium' tabindex='5' /…