This repository has been archived by the owner on Dec 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
130 lines (127 loc) · 6.65 KB
/
popup.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
<html>
<head>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div class="main-block">
<div class="form-check form-switch">
<input class="form-check-input" id="mode" type="checkbox">
<label class="form-check-label" for="flexSwitchCheckDefault">Mode ON/OFF</label>
</div>
<span id="mode_message"></span>
<hr>
<div class="input-group mb-3">
<span>Choose offers which you want to autobump</span>
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-1">
</div>
<input type="text" id="trade-id-1" class="form-control" placeholder="Trade ID #1" disabled>
<input type="text" id="trade-comment-1" class="form-control" placeholder="Comment #1">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-2">
</div>
<input type="text" id="trade-id-2" class="form-control" placeholder="Trade ID #2" disabled>
<input type="text" id="trade-comment-2" class="form-control" placeholder="Comment #2">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-3">
</div>
<input type="text" id="trade-id-3" class="form-control" placeholder="Trade ID #3" disabled>
<input type="text" id="trade-comment-3" class="form-control" placeholder="Comment #3">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-4">
</div>
<input type="text" id="trade-id-4" class="form-control" placeholder="Trade ID #4" disabled>
<input type="text" id="trade-comment-4" class="form-control" placeholder="Comment #4">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-5">
</div>
<input type="text" id="trade-id-5" class="form-control" placeholder="Trade ID #5" disabled>
<input type="text" id="trade-comment-5" class="form-control" placeholder="Comment #5">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-6">
</div>
<input type="text" id="trade-id-6" class="form-control" placeholder="Trade ID #6" disabled>
<input type="text" id="trade-comment-6" class="form-control" placeholder="Comment #6">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-7">
</div>
<input type="text" id="trade-id-7" class="form-control" placeholder="Trade ID #7" disabled>
<input type="text" id="trade-comment-7" class="form-control" placeholder="Comment #7">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-8">
</div>
<input type="text" id="trade-id-8" class="form-control" placeholder="Trade ID #8" disabled>
<input type="text" id="trade-comment-8" class="form-control" placeholder="Comment #8">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-9">
</div>
<input type="text" id="trade-id-9" class="form-control" placeholder="Trade ID #9" disabled>
<input type="text" id="trade-comment-9" class="form-control" placeholder="Comment #9">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-10">
</div>
<input type="text" id="trade-id-10" class="form-control" placeholder="Trade ID #10" disabled>
<input type="text" id="trade-comment-10" class="form-control" placeholder="Comment #10">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-11">
</div>
<input type="text" id="trade-id-11" class="form-control" placeholder="Trade ID #11" disabled>
<input type="text" id="trade-comment-11" class="form-control" placeholder="Comment #11">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-12">
</div>
<input type="text" id="trade-id-12" class="form-control" placeholder="Trade ID #12" disabled>
<input type="text" id="trade-comment-12" class="form-control" placeholder="Comment #12">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-13">
</div>
<input type="text" id="trade-id-13" class="form-control" placeholder="Trade ID #13" disabled>
<input type="text" id="trade-comment-13" class="form-control" placeholder="Comment #13">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-14">
</div>
<input type="text" id="trade-id-14" class="form-control" placeholder="Trade ID #14" disabled>
<input type="text" id="trade-comment-14" class="form-control" placeholder="Comment #14">
</div>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input" type="checkbox" id="trade-status-15">
</div>
<input type="text" id="trade-id-15" class="form-control" placeholder="Trade ID #15" disabled>
<input type="text" id="trade-comment-15" class="form-control" placeholder="Comment #15">
</div>
</div>
</body>
<script src="./js/jquery-3.5.1.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/app.js"></script>
</html>