https://jsfiddle.net/3xt5q25s/
<div class="container">
<div class="row">
<form class="form-inline">
<div class="form-group">
<label for="exampleInputEmail2">Email</label>
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="jane.doe@example.com">
</div>
<button type="submit" class="btn btn-default pull-right">Send invitation</button>
</form>
</div>
</div>
As you can see here in the example, the input does not take all space.
How to make it 100% width(right border of input is next to button)?
It does not have to be form or form-inline, I just want to put label/input/button in one line.