summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2015-12-16 16:07:13 +0100
committerPhilip Häusler <msquare@notrademark.de>2015-12-16 16:07:13 +0100
commitdc4eb98cafccbba7b2877691d8c3322cac87828b (patch)
tree5b7c9c84f0b6c7e10b5e2ef3790f7b5471574393 /templates
parent761897a942bf0cf6c3d616e4ca37bb5942119b6b (diff)
remove html5 input time, because of different browser behaviour
Diffstat (limited to 'templates')
-rw-r--r--templates/user_shifts.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/user_shifts.html b/templates/user_shifts.html
index b5762271..de98b37a 100644
--- a/templates/user_shifts.html
+++ b/templates/user_shifts.html
@@ -17,7 +17,7 @@
<div class="form-group">%start_select%</div>
<div class="form-group">
<div class="input-group">
- <input class="form-control" type="time" id="start_time" name="start_time" size="5" pattern="^\d{1,2}:\d{2}$" placeholder="HH:MM" maxlength="5" value="%start_time%">
+ <input class="form-control" type="text" id="start_time" name="start_time" size="5" pattern="^\d{1,2}:\d{2}$" placeholder="HH:MM" maxlength="5" value="%start_time%">
<div class="input-group-btn">
<button class="btn btn-default" title="Now" type="button" onclick="set_to_now('start');">
<span class="glyphicon glyphicon-time"></span>
@@ -29,7 +29,7 @@
<div class="form-group">%end_select%</div>
<div class="form-group">
<div class="input-group">
- <input class="form-control" type="time" id="end_time" name="end_time" size="5" pattern="^\d{1,2}:\d{2}$" placeholder="HH:MM" maxlength="5" value="%end_time%">
+ <input class="form-control" type="text" id="end_time" name="end_time" size="5" pattern="^\d{1,2}:\d{2}$" placeholder="HH:MM" maxlength="5" value="%end_time%">
<div class="input-group-btn">
<button class="btn btn-default" title="Now" type="button" onclick="set_to_now('end');">
<span class="glyphicon glyphicon-time"></span>