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>
<div> <div>
<label for="historyFrom">From</label> <label for="historyFrom">From</label>
<input type="datetime" name="dateFrom" id="historyFrom"/> <input type="datetime-local" name="dateFrom" id="historyFrom"/>
</div> </div>
<div> <div>
<label for="historyTo">To</label> <label for="historyTo">To</label>
<input type="datetime" name="dateTo" id="historyTo"/> <input type="datetime-local" name="dateTo" id="historyTo"/>
</div> </div>
<button id="btn-searchHistory">Search</button> <button id="btn-searchHistory">Search</button>
</div> </div>

View File

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