forked from stevebooks/jquery-datetime-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (21 loc) · 970 Bytes
/
index.html
File metadata and controls
22 lines (21 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/smoothness/jquery-ui.css" type="text/css" media="all" />
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
<link rel="stylesheet" href="mobiscroll.css" type="text/css" media="all" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
<script src="jquery-ui-timepicker-addon.js"></script>
<script src="mobiscroll.js"></script>
<script src="application.js"></script>
</head>
<body>
<form>
<h4>Start Time</h4>
<input class="datetimepicker" id="start_time" name="start_time" type="text" size=25 />
<h4>End Time</h4>
<input class="datetimepicker" id="end_time" name="end_time" type="text" size=25 />
</form>
</body>
</html>