blob: 64bea5d841c163ddec4553de61e45437bb29b98a [file] [log] [blame]
<!--********************************************************************************
* Copyright (c) 2015-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 bsModal #lgOverwriteModal="bs-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="SelectSearchComponents" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">{{ 'core.overwrite-dialog.label-with-this-name-already-exists' | translate:label }}</h4>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-12">
<button type="button" class="btn btn-default" (click)="overwrite(false)">
<span class="fa fa-times"></span> {{ 'core.overwrite-dialog.btn-cancel' | translate }}
</button>
<button type="button" class="btn btn-default pull-right" (click)="overwrite(true)">
<span class="fa fa-check"></span> {{ 'core.overwrite-dialog.btn-overwrite' | translate }}
</button>
</div>
</div>
</div>
</div>
</div>
</div>