Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
<ng-template #dialog>
<div class="modal-header">
<h4 class="modal-title" tabIndex="0">{{message.title}}</h4>
</div>
<div class="modal-body">
<p tabIndex="0">{{message.body}}</p>
</div>
<div class="modal-footer">
<div *ngIf="!message.buttons">
<button type="button" class="btn btn-outline-dark" (click)="closeModal('OK')" tabIndex="0">OK</button>
</div>
<div *ngFor='let b of message.buttons'>
<button type="button" class="btn btn-outline-dark" (click)="closeModal(b)" tabIndex="0">{{b}}</button>
</div>
</div>
</ng-template>