Old.html: fixed input type for hour/minutes
This commit is contained in:
parent
740970155a
commit
2fef5ee57e
1 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue