-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
103 lines (76 loc) · 4.69 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
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Fuyuumi</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://discordapp.com/assets/0.1e3991231a264a472338.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="content/style.css">
</head>
<body>
<header id="titlebar">
<div id="drag-region">
<div id="window-title">
<span>Fuyuumi</span>
</div>
<div id="window-controls">
<div class="button" id="min-button">
<span></span>
</div>
<div class="button" id="close-button">
<span></span>
</div>
</div>
</div>
</header>
<div id="main">
<ul id="tabs-swipe-demo" class="tabs">
<li class="tab col s3" style="background-color: rgb(49, 49, 49) !important;"><a class="active" href="#test-swipe-1"><i class="fas fa-keyboard" style="font-size:1.5em"></i></a></li>
<li class="tab col s3" style="background-color: rgb(49, 49, 49) !important;"><a href="#test-swipe-2"><i class="fas fa-terminal" style="font-size:1.5em"></i></a></li>
<li class="tab col s3" style="background-color: rgb(49, 49, 49) !important;"><a href="#test-swipe-3"><i class="fas fa-cog" style="font-size:1.5em"></i></a></li>
</ul>
<div id="test-swipe-1" class="col s12" style="height:90%; width:100%; padding: 5px;">
<button onclick="killBot()" style='position: absolute;bottom: 3px;right: 75px;' class="red hover:red-dark text-white font-bold py-2 px-4 rounded">Kill</button>
<button onclick="startBot()" style='position: absolute;bottom: 3px;right: 5px;' id="test_button" class="blue hover:blue-dark text-white font-bold py-2 px-4 rounded">Run</button>
<textarea id="text_spam" style='background-color: rgb(64, 67, 73);margin-top: 0px;margin-bottom: 0px;height: 466px;resize: none;' placeholder="Text Spam"></textarea>
</div>
<div id="test-swipe-2" class="col s12" style="height:90%; width:100%; padding: 5px;">
<div id="log-container" style="background-color: #36393F; border:medium; height: 100%" class="rounded">
<pre id="log" style="overflow: hidden"></pre>
</div>
</div>
<div id="test-swipe-3" class="col s12" style="height:90%; width:100%; padding: 5px;">
<input type="text" name="Server ID" placeholder="Server ID" id="server_id">
<input type="text" name="Server Channel" placeholder="Server Channel" id="channel_id">
<input type="text" name="Python Command" placeholder="Python Command" id="pythonCom_id">
<input type="text" name="Spam Speed" placeholder="Spam Speed" id="spmspd_id">
<input type="text" name="Random Text" placeholder="Random Text" id="txtrng_id">
<input type="text" name="Full Text" placeholder="Full Text" id="txtful_id">
<div class="switch">
Random Text
<label>
<input type="checkbox" onclick="ConfigWriter('textRandom','False');">
<span class="lever"></span>
</label>
</div>
<input type="text" name="Server Channel" placeholder="Server Channel" id="channel_id">
<input type="text" name="Server Channel" placeholder="Server Channel" id="channel_id">
<input type="text" name="" placeholder="Token" id="token_add">
<button type="button" id="add_token_button">Add</button>
</div>
</div>
<script>window.$ = window.jQuery = require('jquery');</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script>require('./content/addon.js')</script>
<script type="text/javascript" src="content/app.js"></script>
<script>
$(document).ready(function(){
$('.tabs').tabs();
});
</script>
</body>
</html>