-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtest-payload.html
53 lines (38 loc) · 1.32 KB
/
test-payload.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
<!--
HTML source code used in the unit testing.
-->
<div id="test-address">
<div class="bitcoin-address" data-bc-address="xxx"></div>
</div>
<div id="bitcoin-address-template" class="bitcoin-address-container" style="display: none">
<div>
<span class="bitcoin-address"></span>
</div>
<a href="#" class="bitcoin-address-action bitcoin-address-action-send">
<i class="fa fa-btc"></i>
Pay from wallet
</a>
<a href="#" class="bitcoin-address-action bitcoin-address-action-copy">
<i class="fa fa-copy"></i>
Copy
</a>
<a href="#" class="bitcoin-address-action bitcoin-address-action-qr">
<i class="fa fa-qrcode"></i>
QR code
</a>
<div class="bitcoin-action-hint bitcoin-action-hint-send">
Sending payment to the address from locally installed Bitcoin wallet app.
</div>
<div class="bitcoin-action-hint bitcoin-action-hint-copy">
Press CTRL + C or ⌘ + C to copy the Bitcoin address.
</div>
<div class="bitcoin-action-hint bitcoin-action-hint-qr">
<p>
Scan the QR code with your mobile Bitcoin app to
make the payment:
</p>
<div class="bitcoin-address-qr-container">
<!-- Filled in by JS on action click -->
</div>
</div>
</div>