blob: 21cf1fa6951484f6575237ba89dd60070ce52124 [file] [log] [blame]
<!-- /********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/ -->
<div class="modal-header">
<h4 class="modal-title">{{title | translate}}</h4>
</div>
<div class="modal-body">
<p *ngIf="!noExclamationMark" class="exclamation-icon">
<i class="fa fa-exclamation fa-5x" aria-hidden="true" ></i>
</p>
<p float:right>
{{body | translate}}
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-outline-danger" (click)="activeModal.close()">{{ 'ConfirmDialog.SubmitBtn' | translate }}</button>
<button type="button" class="btn btn-outline-secondary" (click)="activeModal.dismiss()">{{ 'ConfirmDialog.CancelBtn' | translate }}</button>
</div>