Bootstrap Datepicker

Bootstrap-datepicker provides a flexible datepicker widget in the Bootstrap style.

Official Documentation

Usage

CSS

In order to use this plugin on your page you will need to include the following styles in the Page CSS area from the page’s head section.

<link rel="stylesheet" type="text/css" href="../assets/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css">

JS

In order to use this plugin on your page you will need to include the following script in the “Page JS” area from the page’s footer.

<script src="../assets/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js"></script>

Basic

<div class="input-group">
    <input type="text" class="form-control" id="datepicker" placeholder="mm/dd/yyyy">
    <div class="input-group-append">
        <span class="input-group-text"><i class="fas fa-calendar-alt"></i></span>
    </div>
</div>