I have an issue related to html/angular 2 date picker. So i have such input tag:
<input #createdAt ngModel type="datetime-local" id="createdAt" name="date" class="form-control" required>
but i don't want allow to a user select future date, so only today and past date is allowed. How can i achieve such behaviour with angular 2?