In the sign-up form components, there is a clear HTML validation error regarding the date of birth dropdowns.
Location : signup-forms/index.html
The Issue:
The <select> tags use an invalid type attribute (e.g., <select type="day"> and <select type="month">). The type attribute is used for <input> elements, not <select> elements.
The Second Issue :
The "Year" dropdown is incorrectly labeled with type="month"
How to Fix :
Replace the type attribute with name and id attributes (e.g., ) to ensure the forms function correctly when submitted and validate perfectly.
In the sign-up form components, there is a clear HTML validation error regarding the date of birth dropdowns.
Location :
signup-forms/index.htmlThe Issue:
The <select> tags use an invalid type attribute (e.g., <select type="day"> and <select type="month">). The type attribute is used for <input> elements, not <select> elements.The Second Issue :
The "Year" dropdown is incorrectly labeled with type="month"How to Fix :
Replace the type attribute with name and id attributes (e.g., ) to ensure the forms function correctly when submitted and validate perfectly.