I\'m having some problems to set a minimum and a maximum YEAR with HTML5 date input.
Here is my code:
Some browsers like Safari and Internet Explorer does not support this functionality, this may be your problem. Write validation via Javascript.
The list of browers that support this feature can be seen at:...
http://html5test.com/compare/browser/chrome-33/firefox-27/opera-19/safari-7.0/ie-11.html
min and max attributes for date input type have very little browser support. You can use jQuery validation as a workaround.
<input id="dateInput" required="required" min="1900-01-01" max="2099-09-13" type="date" class="form-control" id="inputDataNascimento">
<script>
$("#dateInput").validate();
</script>