I want to include two buttons at the top of my page: Save and Cancel. These buttons should only appear after clicking the Submit button on the Customer Information panel. However, when trying this, the Customer Information panel is pushed down while I also need the Search for Plan panel to be moved down by one row so that both panels remain aligned at the top. Below is the code snippet:
<div ng-controller="MchPlanAddController">
<h3>UNDERWRITING RULES MAINTENANCE - Add Plan Information</h3>
<div class="col-lg-8">
<table style="width:100%; table-layout:auto">
<tr>
<td style="vertical-align:bottom">
<div ng-if="vm.customer" class="panel" style="margin-left:15px">
<button class="btn btn-success navbar-btn"
ng-click="vm.save()"
title="Save pending changes to any and all todolists">
<i class="glyphicon glyphicon-floppy-disk"></i> Save
</button>
<button class="btn btn-danger navbar-btn" ng-click="vm.cancel()"
title="Discard changes and refresh from the server">
<i class="glyphicon glyphicon-refresh"></i> Cancel
</button>
<span class="alert alert-danger" ng-if="vm.getChangesCount()">
Unsaved changes: {{vm.getChangesCount()}}
</span>
</div>
</td>
</tr>
</table>
<!-- Rest of the code goes here -->
<style>
.input-contain input {
width: 100%;
}
</style>