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 18 19 20 21 22 23 | 3x | <div class="modal-header">
<h2 class="modal-title" id="confirm-leave-modal-title">
{{ 'account.register.confirm_leave_modal.title' | translate }}
</h2>
<button
class="btn-close"
type="button"
[title]="'dialog.close.text' | translate"
(click)="activeModal.dismiss(false)"
></button>
</div>
<div class="modal-body">
{{ 'account.register.confirm_leave_modal.body' | translate }}
</div>
<div class="modal-footer">
<button class="btn btn-primary" ngbAutofocus type="button" (click)="activeModal.close(true)">
{{ 'account.register.confirm_leave_modal.confirm_button' | translate }}
</button>
<button class="btn btn-secondary" type="button" (click)="activeModal.close(false)">
{{ 'account.register.confirm_leave_modal.cancel_button' | translate }}
</button>
</div>
|