I have created a basic form using the following code:
<div class="container">
<div class="jumbotron" style="width:100%">
<h1>
ConfigTool Web Interface
</h1>
<p>
Edit the configuration variables here and click save.
</p>
</div>
<div class="form-group row">
<label class="col-2">Name:</label>
<input class="form-control col-10" type="text" />
</div>
</div>
Here is how it appears in the page:
https://i.sstatic.net/JuKT5.png
The issue I am facing is that the input field does not align properly with the jumbotron, as it extends beyond the padding. Here's how it looks:
https://i.sstatic.net/I1brp.png
Any suggestions on how to resolve this alignment problem?