Browse Source

Old.html: fixed input type for hour/minutes

boyska 10 years ago
parent
commit
2fef5ee57e
1 changed files with 4 additions and 4 deletions
  1. 4 4
      server/pages/old.html

+ 4 - 4
server/pages/old.html

@@ -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>