aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/http/web/index.html
blob: 78294fb02e1ed1c6485405056e5c5149ce9a6ffc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html><html><head><link rel="icon" href="./onap-cli.png">
<meta charset="utf-8"><title>ONAP CLI</title><style></style>
<script>
function redirectToConsole(){
   window.location.href="http://"+  window.location.hostname + ":9090";
}

var slideIndex = 0;

function showSlides() {
    var i;
    var slides = document.getElementsByClassName("mySlides");
    for (i = 0; i < slides.length; i++) {
        slides[i].style.display = "none";
    }
    slideIndex++;
    if (slideIndex > slides.length) {slideIndex = 1}
    slides[slideIndex-1].style.display = "block";
    setTimeout(showSlides, 2000); // Change image every 2 seconds
}

</script>
<style>

body {
    margin: 0 1% 0;
    background-color: black
}

.readme {
    display: inline-block;
    float: left;
    margin: 3% 3% 0;

}

* {box-sizing:border-box}

.slideshow-container {
 display: inline-block;
 float: right;
 max-width: 700px;
 position: relative;
 margin: 6% 3% 0;
}

.mySlides {
    display: none;
}

</style>

</head>

<body onload="showSlides()" style="background-color: white;color: black">
<div class="readme">
<h2>ONAP Command-Line Interface (CLI)</h2>

<p>Provides unified commands to operate ONAP from Linux shell and web-console.

<h3 >Web Command Console</h3>
<p>To open web command console for ONAP,
<a onclick="redirectToConsole();" style="color: blue;cursor: pointer">Click here !</a>

<h3>Linux Command Console</h3>
<p>Please follow the instructions given below for installing ONAP CLI.</p>
<ol>
<li>Download ONAP CLI from <a href="./onap-cli.zip">here</a></li>
<li>Unzip into folder /opt/onap/cli</li>
<li>Initialize CLI by running /opt/onap/cli/cli-init.sh</li>
<li>Run ONAP CLI, by typing <strong>onap</strong> from command line
<li>For more details, refer /opt/onap/cli/README.md</li>
</ol>
<br>
<a href="http://onap.readthedocs.io/en/latest/submodules/cli.git/docs/index.html" style="color: blue;">
<sub style="color: blue;"><strong>One Command to command whole Onap !!</strong></sub></a>
<hr>
<p><i>Powered by <strong>Open CLI Platform (OCLIP) </strong>
<a href="http://onap.readthedocs.io/en/latest/submodules/cli.git/docs/OCLIP.html" style="color: blue;">1.0</a>
</i></p>
</div>

<div class="slideshow-container">
  <div class="mySlides">
    <img src="images/onap-cli-ad-1.png" style="width:80%">
  </div>

  <div class="mySlides">
    <img src="images/onap-cli-ad-2.png" style="width:80%">
  </div>

  <div class="mySlides">
    <img src="images/onap-cli-ad-3.png" style="width:80%">
  </div>

  <div class="mySlides">
    <img src="images/onap-cli-ad-4.png" style="width:80%">
  </div>

  <div class="mySlides">
    <img src="images/onap-cli-ad-5.png" style="width:80%">
  </div>

  <div class="mySlides">
    <img src="images/onap-cli-ad-6.png" style="width:80%">
  </div>

</div>


</body></html>