My form requires input fields for date, month, and year separately.
The validation rules are as follows: Date should be between 1-31 and month should be between 1-12. The desired date format is dd mm yyyy.
Could someone kindly help me with the HTML code below?
<div class="date">
<input id="date" name="day" />
<input id="month" name="month" />
<input id="year" name="year />
</div>
All input fields in the form are text boxes.