This repository was archived by the owner on Sep 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
101 lines (77 loc) · 4.45 KB
/
options.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="./options.css" />
<title>Options Bots COTPS</title>
</head>
<body>
<div class="saved-notif">
<i class="fa fa-check"></i> Settings saved
</div>
<div class="wrapper">
<div class="page">
<div class="alert alert-warning">
<p><i class="fa fa-triangle-exclamation"></i> If script doesn't work, click on the button below to be sure you use the correct formated URL.</p>
<a href="https://cotps.com/#/pages/transaction/transaction" target="_blank" class="btn btn-info"><i class="fa fa-rocket"></i> Launch script</a>
</div>
<div class="card">
<div class="card-header">
<h1><i class="fa fa-wrench"></i> Options COTPS Bots</h1>
</div>
<div class="card-content">
<form>
<h2>Making Order</h2>
<div class="row">
<div class="col-lg -6 mb-3">
<label for="delay_between_actions" class="form-label">Waiting delay in seconds between each order modals</label>
<input type="text" class="form-control" id="delay_between_actions" name="delay_between_actions" required value="">
<div id="refreshStepsHelp" class="form-text">
If you have error with "clicks" on logs, try to increase this value<br />
<strong>Recommanded values : 10</strong></div>
</div>
</div>
<h2>Minimum wallet to make orders</h2>
<div class="row">
<div class="col-lg-6 mb-3">
<label for="min_wallet_system" class="form-label">System</label>
<select class="form-select" id="min_wallet_system" name="min_wallet_system" required>
<option value="percentage">Percentage</option>
<option value="fixed_val">Fixed value in $</option>
</select>
<!-- <div id="minimumWalletSystemHelp" class="form-text">We'll never share your email with anyone else.</div> -->
</div>
<div class="col-lg-6 mb-3">
<label for="minimum_wallet" class="form-label">Value</label>
<input type="number" class="form-control" id="minimum_wallet" name="minimum_wallet" required value="">
<div id="minimumWalletValueHelp" class="form-text">Be carefull, if you set "percentage", <strong>don't</strong> set a value higher than 100</div>
</div>
</div>
<h2>Reload system</h2>
<div class="row">
<div class="col-lg -6 mb-3">
<label for="refresh_steps" class="form-label">Steps</label>
<input type="text" class="form-control" id="refresh_steps" name="refresh_steps" required value="">
<div id="refreshStepsHelp" class="form-text">
Separate values by comma example for 10 minutes, 5 minutes and then 2 minutes : 10,5,2<br />
<strong>Recommanded values : 120,5,2</strong></div>
</div>
</div>
<button type="submit" class="btn btn-primary"><i class="fa fa-floppy-disk"></i> Save</button>
<button class="btn btn-warning btn-reset"><i class="fa fa-times"></i> Reset settings</button>
</form>
</div>
<div class="card-footer">
<div class="copyright"><i class="fa fa-robot"></i> Bot created by <strong>Harkor</strong> - Version <span class="extension-version"></span></div>
</div>
</div>
</div>
</div>
<script src="options.js"></script>
</body>
</html>