I have two fields:
<input type="date" id="data_inicial" value="<?php echo date("Y-m-d"); ?>" disabled>
<input type="date" id="data_final">
The first field, I have the initial date filled in and set to disabled. The second field, I have the date open.
Note: I'm just using HTML5's date type, I'm not using any kind of validator.
How do I make the second field always GREATER than the first? Is there a rule I can add to the field to fetch the date from the start date only?