summaryrefslogtreecommitdiff
path: root/UI
diff options
context:
space:
mode:
Diffstat (limited to 'UI')
-rw-r--r--UI/employee.html6
-rw-r--r--UI/voucher.html8
2 files changed, 8 insertions, 6 deletions
diff --git a/UI/employee.html b/UI/employee.html
index de6f4c8e..a9eacc2e 100644
--- a/UI/employee.html
+++ b/UI/employee.html
@@ -120,13 +120,13 @@ formatting desired.
<div class="input_row" id="startdate_row">
<span class="input_label"><?lsmb text('Start Date') ?></span>
<span class="input_field">
- <input type="text" name="startdate" maxlength="11" value="<?lsmb startdate ?>" />
+ <input class="date" type="text" name="startdate" maxlength="11" value="<?lsmb startdate ?>" />
</span>
</div>
<div class="input_row" id="enddate_row">
<span class="input_label"><?lsmb text('End Date') ?></span>
<span class="input_field">
- <input type="text" name="enddate" maxlength="11" value="<?lsmb enddate ?>" />
+ <input class="date" type="text" name="enddate" maxlength="11" value="<?lsmb enddate ?>" />
</span>
</div>
<div class="input_row" id="ssn_row">
@@ -138,7 +138,7 @@ formatting desired.
<div class="input_row" id="dob_row">
<span class="input_label"><?lsmb text('DOB') ?></span>
<span class="input_field">
- <input type="text" maxlength="11" name="dob" value="<?lsmb dob ?>" />
+ <input class="date" type="text" maxlength="11" name="dob" value="<?lsmb dob ?>" />
</span>
</div>
<div class="input_row" id="iban_row">
diff --git a/UI/voucher.html b/UI/voucher.html
index 4cf6bf29..c0c6aa6a 100644
--- a/UI/voucher.html
+++ b/UI/voucher.html
@@ -18,16 +18,18 @@
<div id="filter">
<div id="date_from" class="header_entry">
<span class="label" id="date_from_label">Date From:</span>
- <span class="field" id="date_from_field"><input name="date_from"></span>
+ <span class="field" id="date_from_field">
+ <input type="text" class="date" name="date_from"></span>
</div>
<div id="date_to" class="header_entry">
<span class="label" id="date_to_label">Date To:</span>
- <span class="field" id="date_to_field"><input name="date_to"></span>
+ <span class="field" id="date_to_field">
+ <input name="date_to" class="date" type="text"></span>
</div>
<div id="include_date" class="header_entry">
<span class="label" id="include_date_label">And Date:</span>
<span class="field" id="include_date_field">
- <input name="include_date">
+ <input name="include_date" class="date" type="text">
</span>
</div>
</body>