T139 added datetime input restriction

This commit is contained in:
2021-03-18 11:35:19 +01:00
parent 3e53d174f4
commit 327bbcdd45
2 changed files with 4 additions and 4 deletions

View File

@@ -95,11 +95,11 @@
<div>
<div>
<label for="historyFrom">From</label>
<input type="datetime" name="dateFrom" id="historyFrom"/>
<input type="datetime-local" name="dateFrom" id="historyFrom"/>
</div>
<div>
<label for="historyTo">To</label>
<input type="datetime" name="dateTo" id="historyTo"/>
<input type="datetime-local" name="dateTo" id="historyTo"/>
</div>
<button id="btn-searchHistory">Search</button>
</div>