All files / src/app/shared/components/registration/confirm-leave-modal confirm-leave-modal.component.html

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 183x                                  
<div class="modal-header">
  <h2 class="modal-title">{{ 'account.register.confirm_leave_modal.title' | translate }}</h2>
  <button type="button" class="close" [title]="'dialog.close.text' | translate" (click)="activeModal.dismiss(false)">
    <span aria-hidden="true">&times;</span>
  </button>
</div>
<div class="modal-body">
  {{ 'account.register.confirm_leave_modal.body' | translate }}
</div>
<div class="modal-footer">
  <button type="button" ngbAutofocus class="btn btn-primary" (click)="activeModal.close(true)">
    {{ 'account.register.confirm_leave_modal.confirm_button' | translate }}
  </button>
  <button type="button" class="btn btn-secondary" (click)="activeModal.close(false)">
    {{ 'account.register.confirm_leave_modal.cancel_button' | translate }}
  </button>
</div>