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 id="confirm-leave-modal-title" class="modal-title">
{{ 'account.register.confirm_leave_modal.title' | translate }}
</h2>
<button
type="button"
class="btn-close"
[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 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>
|