-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask7.html
158 lines (126 loc) · 3.7 KB
/
task7.html
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<script>
function lw() {
var i = document.getElementById("in1").value
var xhr = new XMLHttpRequest();
xhr.open("GET","http://192.168.43.79/cgi-bin/task7.py?x="+i,true);
xhr.send();
xhr.onload = function() {
var output = xhr.responseText;
document.getElementById("d1").innerHTML = output;
}
}
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=<device-width>, initial-scale=1.0">
<title>DOCKER-HUB</title>
</head>
<style>
body {
text-align: center;
background-image:url("http://treasuresofinnocence.org/wp-content/uploads/2015/08/4.New-style-light-blue-color-Background-image-www.graphiclay.blogspot.com_.jpg") ;
opacity: 150%;
}
.d5 {
text-align: left;
transform: scale(1,1);
}
.d4 {
font-size: 18px;
color: rgb(185, 82, 82);
}
.d7 {
position: absolute;
right: 0px;
width: 300px;
border: 3px solid #73AD21;
padding: 10px;
border-radius: 15px;
}
.grid-container {
display: grid;
grid-template-columns: auto auto auto;
background-color: #2196F3;
padding: 15px;
}
.grid-item {
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(0, 0, 0, 0.8);
padding: 20px;
font-size: 30px;
text-align: center;
}
.d3 {
background-color: lightskyblue;
font-size: 40px;
text-align: center;
}
#in1 {
font-size: 40px;
background-color: rgb(172, 172, 238)
}
.d7 {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: black;
display: inline-block;
font-size: 26px;
margin: 2px 2px;
cursor: pointer;
position: absolute;
top: 245px;
border-radius: 15px;
box-shadow: 0 9px #999;
}
.d7:hover {
background-color: #3e8e41
}
.d7:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
#d1{
color:rgba(0, 0, 0, 0.8)(127, 212, 71);
background-color: lightpink;
border: dotted;
border: medium dashed green;
font-size: 20px;
transform: scale(0.75,0.75);
position: relative;
bottom: 50px;
}
</style>
<body>
</div>
<div class="d2">
<div class="d4"><img src="docdark.png" /> <b> <u><big>DOCKER - CONSOLE</big> </u></b><img src="cons.png" />
</div>
</div>
<div class="d4">
<h3><i> WELCOME TO THE WORLD OF CONTAINERS</i></h3>
<p> <h4>Hello Tech-enthusiast.....Welcome to the plateform called <b><big>DOCKER-CONSOLE</big></b>. It is a
one-place for all your docker needs , just pass your docker commands in console.....</h4></p>
</div>
<div class="d3"><i><b> [root @localhost~]# <input id="in1" /></b></i></div>
<button class="d7" onclick="lw()">
<b>RUN</b>
</button>
<pre>
<div id="d1">Press <b>RUN</b> to see your output here...<div />
<div class="d5"><img src="https://cdn.dribbble.com/users/1008970/screenshots/6140230/blog_post_docker.gif"
alt="broken image"></div>
<pre/>
<div class="grid-container">
<div class="grid-item">BUILD</div>
<div class="grid-item">SHIP</div>
<div class="grid-item">RUN</div>
</div>
</body>
</html>