-1
In input date
gives the option to open calendar to select the date, in the datetime
you don’t have that option.
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input type="datetime" name="DataInicio" id="DataInicio" >
<input type="date" name="DataReserva" id="DataReserva">
How can I solve the problem?
A very simple way to solve this is by using jQuery. Here are some references https://xdsoft.net/jqplugins/datetimepicker/ https://eonasdan.github.io/bootstrap-datetimepicker/ I hope you solve this.
– Leandro Castro