-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (107 loc) · 5.2 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
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/hystmodal.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="img/favicon-old.png"/>
<title>Control Panel - Gang Bang</title>
</head>
<body>
<section class="wallets">
<div class="container">
<header class="wallets__header">
<span class="wallets__title title">Wallets</span>
<a class="add-wallet-btn" href="#" data-hystmodal="#myModal">Add</a>
</header>
<ul class="wallets__list list-wallets">
<li class="list-wallets__item list-wallets__header">
<span class="list-wallets__address">Address</span>
<!-- <span class="list-wallets__transactions">Transactions</span>
<span class="list-wallets__balance">Total balance</span> -->
<div class="wallets__controls" style="visibility: hidden;">
<div class="wallets__download-btn">
<img src="img/icons/file_download_black_24dp.svg" alt="">
</div>
<div class="wallets__delete-btn">
<img src="img/icons/delete_black_24dp.svg" alt="">
</div>
</div>
</li>
<!-- List item example -->
<!-- <li class="list-wallets__item">
<div class="wallets__icon">
<img src="img/icons/cryptocurrencies/btc.svg" alt="">
</div>
<div class="list-wallets__text">
<span class="list-wallets__address" onclick="event.stopPropagation();">
bc1q6w0eufkfhya4xjpyqnvkwcdt9a2kca8am097u1
<img class="copy-img" src="img/icons/content_copy_black_24dp.svg" width="24px" alt="">
</span>
<small class="list-wallets__seed" onclick="event.stopPropagation();">present follow peace wheat custom wrist minute protect treat liberty cost end</small>
</div>
<span class="list-wallets__transactions" onclick="event.stopPropagation();">10</span>
<span class="list-wallets__balance" onclick="event.stopPropagation();">0.00003501 BTC</span>
<div class="wallets__controls" onclick="event.stopPropagation();">
<div class="wallets__download-btn">
<img src="img/icons/file_download_black_24dp.svg" alt="">
</div>
<div class="wallets__delete-btn">
<img src="img/icons/delete_black_24dp.svg" alt="">
</div>
</div>
</li> -->
</ul>
<!-- Modal -->
<div class="hystmodal" id="myModal" aria-hidden="true">
<div class="hystmodal__wrap">
<form id="json-data" method="POST" action="https://gangbang-criapi.herokuapp.com/wallets/add" enctype="multipart/form-data">
<div class="hystmodal__window" role="dialog" aria-modal="true">
<header class="hystmodal__header">
<span class="hystmodal__title title">Add new wallet</span>
<button type="button" data-hystclose class="hystmodal__close">Закрыть</button>
</header>
<div class="hystmodal__body">
<label class="input-label">
<div class="input-label__text">Address:</div>
<input class="hystmodal__text-input" name="address" type="text">
</label>
<label class="input-label">
<div class="input-label__text">Seed:</div>
<textarea class="hystmodal__textarea textarea" name="seed" rows="5"></textarea>
</label>
<label class="input-label select-label">
<img class="coin-icon" src="img/icons/cryptocurrencies/btc.svg" alt="">
<select class="hystmodal__select-input select" name="coin" onchange="updateSelect()">
<option value="btc">Bitcoin</option>
<option value="doge">Dogecoin</option>
<option value="eth">Ethereum</option>
<option value="ltc">Litecoin</option>
<option value="trx">TRON</option>
<option value="usdt">Tether</option>
<option value="xmr">Monero</option>
<option value="xrp">Ripple</option>
</select>
</label>
</div>
<div class="hystmodal__footer">
<input id="wallet-file-picker" type="file" name="wallet-file">
<label class="file-wrapper" for="wallet-file-picker">Choose file</label>
<button class="hystmodal__btn submit-btn" type="submit">OK</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<script src="js/hystmodal.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>