JSFiddle - React, Tailwind, and code Playground
by VISHNU PRASAD
HTML
<link rel="stylesheet" href="http://eonasdan.github.io/bootstrap-datetimepicker/content/bootstrap-datetimepicker.css">
<script src="http://eonasdan.github.io/bootstrap-datetimepicker/scripts/bootstrap.min.js"></script>
<script src="http://eonasdan.github.io/bootstrap-datetimepicker/scripts/moment.js"></script>
<script src="http://eonasdan.github.io/bootstrap-datetimepicker/scripts/bootstrap-datetimepicker.js"></script>
<script src="http://eonasdan.github.io/bootstrap-datetimepicker/scripts/locales/bootstrap-datetimepicker.ru.js"></script>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<div class='col-xs-4 input-group date'>
<input type="text" class="form-control datepicker"/>
<span class="input-group-addon"><span class="glyphicon glyphicon-calendar"></span>
</span>
</div><br>
JavaScript
$('.datepicker').datetimepicker({
dateFormat: "dd-mm-yy",
timeFormat: "HH:mm:ss"
});