瀏覽代碼

Old.html: fixed input type for hour/minutes

boyska 10 年之前
父節點
當前提交
2fef5ee57e
共有 1 個文件被更改,包括 4 次插入4 次删除
  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>