1 <div class="modal-header">
2 <h4 class="modal-title pull-left">Delete</h4>
3 <button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
4 <span aria-hidden="true">×</span>
7 <form name="deleteForm"
8 class="form-horizontal"
10 [formGroup]="deleteForm"
12 <div class="modal-body">
13 Are you sure you want to delete <strong>{{ itemName }}</strong>?
15 <div class="modal-footer">
16 <div class="button-group text-right">
17 <cd-submit-button [form]="deleteForm"
18 (submitAction)="submit()">
21 <button type="button" class="btn btn-sm btn-default" (click)="modalRef.hide()">Cancel</button>