-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 loc) · 2.19 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
<html>
<head>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div class="main-block row">
<div class="first-block col-sm">
<label>Fee</label>
<select id="fee" class="form-select">
</select>
<hr>
<div class="transactions-block row">
<div class="buy-block col-sm text-center">
<h4 class="text-success"><b>Buy</b></h4>
<hr>
<input id="buy_amount" class="form-control text-center" placeholder="Amount of crypto" type="number" min="0" value="0.001" />
<br />
<input id="buy_price" class="form-control text-center" placeholder="Price" type="number" min="0" value="40000" />
</div>
<div class="sell-block col-sm text-center">
<h4 class="text-danger"><b>Sell</b></h4>
<hr>
<input id="sell_amount" class="form-control text-center" placeholder="Amount of crypto" type="number" min="0" value="0" disabled />
<br />
<input id="sell_price" class="form-control text-center" placeholder="Price" type="number" min="0" value="41500" />
</div>
</div>
<hr />
<div class="result-block col-sm">
<h4 id="result-earn">Earn: ≈ 0 USDT</h4>
</div>
<br />
<br />
<span>Software does <b>NOT</b> represent accurate data, it is example how calculator can works.</span><br />
<span><b>Using this software you agree with <a href="https://github.com/svtcore/BinanceFeeCalculator/blob/main/LICENSE" target="_blank">LICENSE</a>. The author is not responsible for possible losses, results of using the software</b></span><br
/>
<span><a href="https://www.binance.com/en/fee/schedule" target="_blank">More info about Binance fees</a></span><br />
<br />
</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>