rebuild GUI structure(only changed modules' name)
[vnfsdk/refrepo.git] / lifecyclemgr / src / main / webapp / lifecyclemgr / InputData.html
1 <!-- /* Copyright 2016-2017, Huawei Technologies Co., Ltd.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *       http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15  -->
16
17 <!DOCTYPE html>
18 <html>
19
20 <head>
21
22     <head lang="en">
23         <meta charset="UTF-8">
24         <title></title>
25         <link href="css/bootstrap.min.css" rel="stylesheet"/>
26         <link href="css/VMMain.css" rel="stylesheet"/>
27         <link href="css/bootstrap-table.min.css" rel="stylesheet"/>
28
29         <script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
30         <script type="text/javascript" src="../common/thirdparty/jquery.i18n/jquery.i18n.properties-1.0.9.js"></script>
31         <script type="text/javascript" src="js/bootstrap.min.js"></script>
32         <script type="text/javascript" src="js/rest.js"></script>
33         <script type="text/javascript" src="js/gsolcm.js"></script>
34         <script type="text/javascript" src="js/bootstrap-table.min.js"></script>
35        <script>
36             $(document).ready(function () {
37                 new lcmHandler();
38                 $('[data-toggle="tooltip"]').tooltip();
39
40                 var params = new URLSearchParams(window.location.search.slice(1));
41
42                 var jsonData = JSON.parse((params.get("json")));
43                 if (jsonData != null) {
44                     document.getElementById("parametersDetail").innerHTML = convertInputsToUI('', 'show', jsonData.inputParameters);
45                 }
46
47             });
48         </script>
49
50         <style>
51             html, body {
52                 width: 99%;/*800px;*/
53             }
54         </style>
55     </head>
56
57 <body>
58 <form class="form-horizontal" role="form">
59 <div id="parametersDetail"></div>
60 </form>
61 </body>
62
63 </html>