I'm having trouble trying to add text to the left of an input field and below a label.
I'm using Bootstrap 4.3.1. My html looks like this:
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- some markup in here -->
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="row">
<label>Sensor URI:</label>
http://<input value="" type="text" id="sensor_uri" min="15" max="1440" class="form-control" required/>
</div>
</div>
It looks something like this:
I've tried various things like enclosing "http://" in different element (<p>, div>, etc) without any success. Ideally I want "http://" in front of the input field like this so that the user can't edit it:
How would I do that?

