diff options
author | Nos- <Nos-@users.noreply.github.com> | 2018-09-17 15:52:39 +0200 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-09-23 11:48:09 +0200 |
commit | b2303c07230e477ca3935f6dfbe4086ff2fe1429 (patch) | |
tree | f5c72a62be59eb1551718f2e57f4675221c14495 /includes/sys_form.php | |
parent | ad75488464df642b93dcf617a3ba7848b0be4c48 (diff) |
Tried to fix inputfields for date, email, tel
Diffstat (limited to 'includes/sys_form.php')
-rw-r--r-- | includes/sys_form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/sys_form.php b/includes/sys_form.php index 73bfe895..edf9542a 100644 --- a/includes/sys_form.php +++ b/includes/sys_form.php @@ -71,7 +71,7 @@ function form_date($name, $label, $value, $start_date = '', $end_date = '') return form_element($label, ' <div class="input-group date" id="' . $dom_id . '"> - <input name="' . $name . '" class="form-control" value="' . htmlspecialchars($value) . '">' + <input type="date" name="' . $name . '" class="form-control" value="' . htmlspecialchars($value) . '">' . '<span class="input-group-addon">' . glyph('th') . '</span> </div> <script type="text/javascript"> |