Skip to content

Commit

Permalink
Fix placeholder date format
Browse files Browse the repository at this point in the history
  • Loading branch information
mvar committed Dec 15, 2014
1 parent 08a0242 commit 9a44aa8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -21,10 +21,10 @@
<input type="text" name="token" id="token" value="{{ token }}" placeholder="e.g. 1f321b">
<div class="clear-fix"></div>
<label for="start">From</label>
<input type="date" name="start" id="start" value="{{ start }}" placeholder="e.g. {{ '-2days'|date('dd.mm.YYYY') }}">
<input type="date" name="start" id="start" value="{{ start }}" placeholder="e.g. {{ '-2days'|date('d.m.Y') }}">
<div class="clear-fix"></div>
<label for="end">Until</label>
<input type="date" name="end" id="end" value="{{ end }}" placeholder="e.g. {{ 'now'|date('dd.mm.YYYY') }}">
<input type="date" name="end" id="end" value="{{ end }}" placeholder="e.g. {{ 'now'|date('d.m.Y') }}">
<div class="clear-fix"></div>
<label for="limit">Limit</label>
<select name="limit" id="limit">
Expand Down

0 comments on commit 9a44aa8

Please sign in to comment.