cc1cb2c1a77acd6300208ca25ced30769b093a27
[holmes/rule-management.git] / rulemgt-frontend / src / app / correlation-modal / modal.component.html
1 <!--
2  Copyright 2018 ZTE Corporation.
3
4  Licensed under the Apache License, Version 2.0 (the "License");
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at
7
8      http://www.apache.org/licenses/LICENSE-2.0
9
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 -->
16 <div class="modal fade in" id="myModal" #sifModal>
17     <div class="modal-dialog">
18         <div class="modal-content">
19             <div class="modal-header">
20                 <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
21                 <h4 class="modal-title">{{modalTitle|translate}}</h4>
22             </div>
23             <div class="modal-body">
24                 <p>{{modalBodyMessage|translate}}</p>
25             </div>
26             <div class="modal-footer">
27                 <button type="button" class="btn btn-primary" data-dismiss="modal">{{closeBtnTitle|translate}}</button>
28             </div>
29         </div>
30     </div>
31 </div>