<div class="container" id="#sandbox-container">
  
<div class="input-daterange input-group" id="datepicker">
    <input type="text" class="form-control" value="2012-04-05">
    <div class="input-group-addon">to</div>
    <input type="text" class="form-control" value="2012-04-19">
</div>
  
</div>
#datepicker {
  margin-top: 100px;
  width: 300px;
}
$('.input-daterange').datepicker({
    todayBtn: true,
    autoclose: true
});

$('.input-daterange input').each(function() {
    $(this).datepicker('clearDates');
});

/***********************************************************/
/*     Bootstrap date picker from:
/*     https://github.com/uxsolutions/bootstrap-datepicker */
/***********************************************************/

External CSS

  1. https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css
  2. https://s3.amazonaws.com/thurgoimages/hire/css/bootstrap-datepicker3.min.css

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js
  2. https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js
  3. https://s3.amazonaws.com/thurgoimages/hire/js/bootstrap-datepicker.min.js