What is the best way to create this form using standard Bootstrap 4.3 tools?
https://i.sstatic.net/P05TB.png
Here's what I attempted, but unfortunately it didn't work as expected.
<div class="col-12 mb-3 form-inline">
<div class="form-group">
<label for="trade_number" class="mr-2">Starting Price</label>
<input type="text" class="form-control" placeholder="From">
<div class="mx-2">-</div>
<input type="text" class="form-control" placeholder="To">
</div>
</div>
<div class="col-12 mb-3 form-inline">
<div class="form-group">
<label for="trade_number" class="mr-2">Current Price</label>
<input type="text" class="form-control" placeholder="From">
<div class="mx-2">-</div>
<input type="text" class="form-control" placeholder="To">
</div>
</div>
Unfortunately, instead of the desired outcome, I encountered the following issue: