-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (90 loc) · 1.84 KB
/
index.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
<!DOCTYPE html>
<html>
<title>Kill Spike</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
footer {
text-align: center;
padding: 3px;
color: grey;
margin-top: 50px;
}
textarea {
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: white;
resize: none;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: white;
color: grey;
text-align: center;
}
input[type=submit] {
background-color: white;
color: grey;
border: 2px solid #4CAF50; /* Green */
padding: 10px 25px;
text-decoration: none;
margin: 2px 1px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #4CAF50;
color: white;
}
div {
opacity: 97% ;
}
</style>
<body>
<div class="w3-container">
<h2></h2>
<div class="w3-card-4">
<div class="w3-container w3-green">
<h2>Spike</h2>
</div>
<form class="w3-container" action="script.php" method="post">
<p>
<p>
<input name=path class="w3-input" type="text" placeholder="/var/www/html/cacti/rra/exemplo.rrd">
<p>
<input type="submit">
</form>
</div>
</div>
<p>
<div class="w3-container">
<h2></h2>
<div class="w3-card-4">
<div class="w3-container w3-green">
<h2>MultiSpike</h2>
</div>
<form class="w3-container" action="multiscript.php" method="post">
<p>
<p>
<p>
<textarea name=files
placeholder="/var/www/html/cacti/rra/exemplo1.rrd
/var/www/html/cacti/rra/exemplo2.rrd
/var/www/html/cacti/rra/exemplo3.rrd" cols="70" rows="8"></textarea>
<p>
<input type="submit">
</form>
</div>
</div>
<footer>
<p>KillSpikealt V1.0<br>
<p>Jhonatan Magalhães<br>
</footer>
</body>
</html>