I have designed a form using the grid system
Within one row, I have a styled link that I want to be aligned with the input fields
Despite trying various combinations of align-button and align-items-button classes, I have not been able to achieve the desired alignment
You can check out the code on this jsfiddle link
<div class="form-row">
<div class="form-group col-md-3">
<label for="inputEmail4">Email</label>
<input type="email" class="form-control">
</div>
<div class="form-group col-md-3">
<label for="inputPassword4">Password</label>
<input type="password" class="form-control" >
</div>
<div class="form-group col-md-3">
<a href="#" class="btn btn-sm btn-secondary">Test</a>
<div class="form-group col-md-3">
</div>
Here is an image of how I would like it to look: https://i.sstatic.net/OXyRt.png