Epic-231:versioning, and backup the configuration
[sdnc/oam.git] / configbackuprestore / vnfconfigbackupservice / src / main / webapp / static / views / form-applyConfig.jsp
1 <!-- /*
2    * ============LICENSE_START=======================================================
3    * ONAP : SDNC-FEATURES
4    * ================================================================================
5    * Copyright 2018 TechMahindra
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     -->
21 <div class="ReportMain" >
22    <div class="heading"><img src="static/images/Apply.jpg" width=70 height="40"  style="margin-left:5px;">&nbsp;&nbsp;Apply Configruation</div>
23    <form name="myForm" style="background-color:#f2f2f2; border: 1px solid #ddd;">
24     <div growl></div>
25     
26       <div class="row" style="background-color:#f2f2f2;width:100%;margin-left:1px;height:75px">
27          <div class="column" style="width:30%;background-color:#f2f2f2;height:55px;margin-left:40px;"> 
28             <label class="labeltext">Select Avaliable VNF</label>
29          </div>
30          <div  class="column" style="background-color:#f2f2f2;width:60%;height:55px;margin-left:0px;">
31             <select  class="form-control" style="width:100%;margin-top:0px;" ng-model="selectedValueVnf"  ng-change="selectVnf(selectedValueVnf)">
32                <option  ng-repeat="vnf in objvnfList" value="{{vnf.vnfid}}">VnfId- {{vnf.vnfid}}&nbsp;VnfName- {{vnf.vnfname}}</option>
33                <option  value="">Select VNFId</option>
34             </select>
35          </div>
36       </div>
37         <div class="row" style="background-color:#f2f2f2;width:100%;margin-left:1px;height:100px">  
38         <div class="column" style="width:30%;height:55px;margin-left:35px;"> 
39         <input type="file" style="width:300px" id="myFileInput" ng-model="file" accept=".json"/>
40         </div>
41         <div class="column" style="width:50%;height:55px;margin-left:10px;"> 
42         <button type="submit" class="btnapply" ng-click="submit()">Apply Config</button>
43    </div>
44    </div>
45     </form>
46 </div>
47 </body>
48 </html>