I am creating a form whose content consists of having some input of type range. However, the corresponding ranges are not shown and besides that, I would like to know how I can have two sliders instead of one, similar to this one, for example:
This is part of the code I have of the form (and it represents an input range):
<div class="form-group">
<label class="control-label col-xs-2">Rango Impuesto Verde:</label>
<div class="col-xs-10">
<input id="iv" type="range" name="i_verde" min="0" max="1000000000" class="form-control"/>
</div>
</div>
I'm using Bootstrap together with the theme Material Design for Bootstrap
Greetings and thanks in advance