Old.html: fixed input type for hour/minutes

This commit is contained in:
boyska 2014-05-13 00:40:01 +02:00
parent 740970155a
commit 2fef5ee57e

View file

@ -46,11 +46,11 @@
</div>
<div class="pure-u-1-4">
<label for="from-hour">Ore</label>
<input type="time" id="from-hour" name="from-hour" size="2" maxlength="2" max="23" min="0" required>
<input type="number" id="from-hour" name="from-hour" size="2" maxlength="2" max="23" min="0" required>
</div>
<div class="pure-u-1-4">
<label for="from-min">Minuti</label>
<input type="time" id="from-min" name="from-min" size="2" maxlength="2" max="59" min="0" required>
<input type="number" id="from-min" name="from-min" size="2" maxlength="2" max="59" min="0" required>
</div>
</fieldset>
@ -62,11 +62,11 @@
</div>
<div class="pure-u-1-4">
<label for="to-hour">Ore</label>
<input type="time" id="to-hour" name="from-hour" size="2" maxlength="2" max="23" min="0" required>
<input type="number" id="to-hour" name="from-hour" size="2" maxlength="2" max="23" min="0" required>
</div>
<div class="pure-u-1-4">
<label for="to-min">Minuti</label>
<input type="time" id="to-min" name="from-min" size="2" maxlength="2" max="59" min="0" required>
<input type="number" id="to-min" name="from-min" size="2" maxlength="2" max="59" min="0" required>
</div>
</fieldset>