blob: 909cf2d2ed9c5872f42a2c6b8ba59fa56268fc88 [file] [log] [blame]
<fims-layout-card-over title="{{'Collection sheet'}}">
<mat-form-field>
<mat-select placeholder="Select office">
<mat-option *ngFor="let office of offices" [value]="office.value">
{{office.viewValue}}
</mat-option>
</mat-select>
</mat-form-field>
<br/>
<mat-form-field>
<mat-select placeholder="Select Loan officer">
<mat-option *ngFor="let staff of staffs" [value]="staff.value">
{{staff.viewValue}}
</mat-option>
</mat-select>
</mat-form-field>
<br/>
<button mat-raised-button color="primary" class="button">
Productive Collection Sheet
</button>
<br/>
<mat-form-field>
<mat-select placeholder="Select center">
<mat-option *ngFor="let center of centers" [value]="center.value">
{{center.viewValue}}
</mat-option>
</mat-select>
</mat-form-field>
<br/>
<mat-form-field>
<mat-select placeholder="Select group">
<mat-option *ngFor="let group of groups" [value]="group.value">
{{group.viewValue}}
</mat-option>
</mat-select>
</mat-form-field>
<br/>
<button mat-raised-button color="primary" class="button">
Collection Sheet
</button>
</fims-layout-card-over>