Is there a way to ensure that the button remains on the same line as the input text in the previous forms-control?
<div class="row">
<div class="form-group col-xs-6 col-md-5 ">
<label for="">Name</label>
<input class="form-control " type="text" >
</div>
<div class="form-group col-xs-6 col-md-5 ">
<label for="">E-mail</label>
<input class="form-control " type="text" ">
</div>
<div class="form-group col-xs-6 col-md-2">
<button class="btn btn-primary">Save</button>
</div>
</div>
To view an example, check out this fiddle: Fiddle
I attempted to add a label above the button tag, but I'm unsure if this is the most effective solution.