-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2.07 KB
/
Copy pathindex.html
File metadata and controls
53 lines (53 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" media="screen and (max-device-width: 599px)" href="assets/smallscreen.css?version=3">
<link rel="stylesheet" media="screen and (min-device-width: 600px)" href="assets/largescreen.css?version=1">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="rcon.js"></script>
<title>Rcon</title>
</head>
<body onload="loadCreds()">
<button id="darkmode" onclick="darkMode()">Dark Mode</button>
<button id="clearlog" onclick="clearLog()">Clear Log</button>
<div id="nav">
<button id="connect" onclick="connect.setup(this);">Connect</button>
</div>
<div align="center">
<form id="form" onsubmit="sendCommand(this); return false;">
<textarea id="a" name="code" rows="10" cols="50" placeholder="Paste Your Command Here..."></textarea>
<br>
<br>
<label title='This adds "cmd add [command name]" to the beginning of the command. (you have to create the command first.)' class="compilercont">
<input id="compiler" type="checkbox" name="compiler">
Compile <br>(For MadCommands Only)<br> <input id="cmdname" placeholder="Command Name" type="text" autocomplete="off" name="cmdname">
<button id="compilerinfo" onclick="compilerInfo()">❓</button>
</label>
<br>
<br>
<button type="submit">Send</button>
</form>
<br>
<label class="autoscroll">
<input id="autoscroll" type="checkbox" name="autoscroll">
Enable auto-scroll?
</label>
<br>
</div>
<p>Command Log</p>
<table id="res">
<tr class="title">
<td> Command</td>
<td> Response</td>
</tr>
</table>
<footer><div>
<p>
© Created By <a>TheCoolWizard69#8429</a>
<br>
<br>
<button onclick="window.location.href = 'https://paypal.me/TheCoolWizard';">Donate</button>
</div>
</footer>
</body>
</html>