Bootstrap-datepicker provides a flexible datepicker widget in the Twitter bootstrap style.
Powered by bootstrap-datapicker
<form>
<div class="form-group">
<label for="example1" class="sr-only">JavaScript</label>
<input type="text" value="01-01-2015" class="datepicker form-control">
</div>
<div class="form-group">
<label for="example2" class="sr-only">Data Attributes</label>
<input type="text" id="example2" placeholder="Date" data-provide="datepicker" data-date-format="mm/dd/yyyy" data-date-today-highlight="true" class="form-control">
</div>
</form>
$('.datepicker').datepicker();