bootstrap range slide with input code example
Example 1: bootstrap range input
<form>
<div class="form-group">
<label for="formControlRange">Example Range input</label>
<input type="range" class="form-control-range" id="formControlRange">
</div>
</form>
Example 2: bootstrap range slider with 2 handles
No, the HTML5 range input only accepts one input. I would recommend you to use
something like the jQuery UI range slider for that task.