Can you provide guidance on achieving proper alignment of inputs and labels across bootstrap grids?
I am looking to ensure that the labels are positioned exactly the same as the first column. Please refer to my plunk:
http://plnkr.co/edit/jaMAp38Rr1g7BLW3R5AI
<div class="row">
<div class="col-sm-6" style="border-style:solid;border-width:1px;">
<form class="form-inline" role="form">
<div class="form-group">
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email" style="width:80px;">
<label>OK</label>
</div>
</form>
</div>
<div class="col-sm-6" style="border-style:solid;border-width:1px;">
<form class="form-inline" role="form">
<div class="form-group">
<label>NOK</label>how can I align this to match the positioning of 'OK'?
</div>
</form>
</div>
</div>