Utilizing bootstrap to create input elements with text prepended, referencing the code from
https://getbootstrap.com/docs/4.0/components/input-group/#basic-example
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon1">@</span>
</div>
<input type="text" class="form-control" placeholder="Username" aria-label="Username" aria-describedby="basic-addon1">
</div>
Encountering an issue where the inputs are not correctly displayed:
https://i.sstatic.net/oNBhC.png
This is how it should appear:
https://i.sstatic.net/SbSTk.png
After clearing all CSS content to rule out any issues there, I believe this can be resolved with CSS adjustments, but unsure of the approach.