84d10ac398bcbdad8a0e2e8de8a15bc5f1280a47
[portal/ric-dashboard.git] / webapp-frontend / src / app / ui / modal-event / modal-event.component.html
1 <!--
2   ========================LICENSE_START=================================
3   ORAN-OSC
4   %%
5   Copyright (C) 2019 AT&T Intellectual Property and Nokia
6   %%
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10   
11        http://www.apache.org/licenses/LICENSE-2.0
12   
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18   ========================LICENSE_END===================================
19   -->
20 <button type="button" mdbBtn color="default" rounded="true" data-toggle="modal" data-target="#basicExample"
21   (click)="frame.show()" mdbWavesEffect>Deploy</button>
22
23 <div mdbModal #frame="mdbModal" class="modal fade left" id="frameModalTop" tabindex="-1" role="dialog"
24   aria-labelledby="myModalLabel" aria-hidden="true" (opened)="onOpened($event)">
25   <div class="modal-dialog modal-notify modal-info modal-side modal-top-left" role="document">
26     <!--Content-->
27     <div class="modal-content">
28       <!--Header-->
29       <div class="modal-header">
30         <p class="heading lead">xApp Info</p>
31
32         <button type="button" class="close" data-dismiss="modal" aria-label="Close" (click)="frame.hide()">
33           <span aria-hidden="true" class="white-text">&times;</span>
34         </button>
35       </div>
36
37       <!--Body-->
38       <div class="modal-body">
39
40         <img src="../../../assets/intelligence.png" alt=""
41           class="img-fluid">
42
43         <div class="text-center">
44           <p>xApp Manager Params</p>
45             <div class="md-form">
46                 <textarea type="text" id="form8" class="md-textarea form-control" rows="1" mdbInput
47                     [formControl]="contactFormModalHelm"></textarea>
48                 <label data-error="wrong" data-success="right" for="form8">Delay</label>
49             </div>
50             <div class="md-form">
51                 <textarea type="text" id="form8" class="md-textarea form-control" rows="1" mdbInput
52                     [formControl]="contactFormModalHelm"></textarea>
53                 <label data-error="wrong" data-success="right" for="form8">Load</label>
54             </div>
55         </div>
56       </div>
57
58       <!--Footer-->
59       <div class="modal-footer justify-content-center">
60         <a type="button" mdbBtn color="primary" class="waves-effect" mdbWavesEffect>
61             <mat-icon style="vertical-align: -21%;">launch</mat-icon> Deploy
62         </a>
63         <a type="button" mdbBtn color="primary" outline="true" class="waves-effect" mdbWavesEffect (click)="frame.hide()"
64           data-dismiss="modal">
65           <mat-icon style="vertical-align: -21%; size: 1em">close</mat-icon> Cancel</a>
66       </div>
67     </div>
68     <!--/.Content-->
69   </div>
70 </div>