Am developing a booking website where people choose checkin and checkout, so let's assume that the chosen room is busy from 20 till 30.
my input would be like
<input id="check_in" name="check_in" type="date" value="" class="form-control" placeholder="Check-in" required min="30" >
am trying to prevent user from choosing bettween 20 and 30
but all i can do in this html tag is preventing from choosing before 30 .
and also am assuming that the room can be busy from 1 to ,and from 20 to 30, how to let user choose bettween 10 and 20 ?