-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
executable file
·68 lines (67 loc) · 3.26 KB
/
Copy pathmain.html
File metadata and controls
executable file
·68 lines (67 loc) · 3.26 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Mansalva&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="scripts/index.css">
<script src="scripts/__index.js"></script>
<title>Docker Manager</title>
</head>
<body>
<div class="container">
<div class="conatiner">
<div class="about2">
<h3 class="text-capitalize font-weight-bold mb-1">Docker Manager</h3>
</div>
<div class="about2">
<button type="button" name="web_tty" id="button10" class="button3 mt-3 bg-transparent mb-1" onclick="web_tty()">Web tty</button>
</div>
</div>
<div class="jumbotron mt-5 bg-grey">
<div class="about">
<button type="button" name="list_running_containers" id="button1" class="button3 bg-transparent mt-4 ml-5" onclick="list_running_containers()">List Running Containers</button>
</div>
<div class="about">
<button type="button" name="list_images" id="button2" class="button4 bg-transparent mt-4 ml-5" onclick="list_available_images()">List Available Images</button>
</div>
<div class="about">
<button type="button" name="list_all_containers" id="button3" class="button5 bg-transparent mt-4 ml-5" onclick="list_all_containers()">List All Containers</button>
</div>
</div>
<div class="container mt-5">
<div class="about1">
<input id="input1" type="text" class="input1" placeholder="ID or name of container">
</div>
<div class="about1">
<input id="input2" type="text" class="input2" placeholder="ID or name of container">
</div>
<div class="about1">
<input id="input3" type="text" class="input3" placeholder="ID or name of container">
</div>
<div class="about1">
<input id="input4" type="text" class="input4" placeholder="ID or name of container">
</div>
<div class="about1">
<button type="button" name="stop_container" id="button4" class="button6 bg-transparent mt-4 ml-5" onclick="stop_container()">Stop Container</button>
</div>
<div class="about1">
<button type="button" name="start_container" id="button5" class="button7 bg-transparent mt-4 ml-5" onclick="start_container()">Start Container</button>
</div>
<div class="about1">
<button type="button" name="restart_container" id="button6" class="button8 bg-transparent mt-4 ml-5" onclick="restart_container()">Restart Container</button>
</div>
<div class="about1">
<button type="button" name="container_logs" id="button7" class="button9 bg-transparent mt-4 ml-5" onclick="container_logs()">Container Logs</button>
</div>
</div>
<div class="container">
<div class="jumbotron bg-dark jumbo1" id="ans">
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</body>
</html>