I'm currently trying to create a date input box to disable a user from selecting any date that is not more than 5 days from the current date.
Is it possible to accomplish this using just something like this:
<label for="startDate">Start Date:</label>
<input type="date" class="form-control" id="startDate" placeholder="mm/dd/yyyy" />
Or is there an easier way - or a different way to approach this problem?