I need help adjusting the layout of these controls to be on the same level. My goal is to have the save button aligned with the input element at the bottom.
<div class="row">
<div class="col-sm-8">
<div class="form-group">
@Html.LabelFor(f => f.DatabaseName, "Database Name")
@Html.DropDownListFor(f => f.DatabaseName, ViewBag.DatabaseList as IEnumerable<SelectListItem>, new { @class = "dbs form-control", style = "margin-bottom:20px" })
<span class="glyphicon glyphicon-save"></span> Save
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<span class="glyphicon glyphicon-save"></span> Save
</div>
</div>
</div>