forked from boogunote/bn5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
25 lines (25 loc) · 837 Bytes
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<body>
<script type="text/javascript" src="amd/bootstrap-datetimepicker.min.js"></script>
<link href="styles/bootstrap-datetimepicker.min.css" rel="stylesheet" type="text/css" />
<div class="container">
<div class="row">
<div class='col-sm-6'>
<div class="form-group">
<div class='input-group date' id='datetimepicker1'>
<input type='text' class="form-control" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
$('#datetimepicker1').datetimepicker();
});
</script>
</div>
</div>
</body>
</html>