-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (56 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BTC.Horse Payment Form</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="BTC.Horse Payment Form">
<meta property="og:site_name" content="Pay.BTC.Horse">
<meta property="og:description" content="BTC.Horse Payment Form">
<meta property="twitter:title" content="BTC.Horse Payment Form">
<meta property="twitter:site" content="Pay.BTC.Horse">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="Pay.BTC.Horse">
<meta name="twitter:description" content="BTC.Horse Payment Form">
<link rel="shortcut icon" href="assets/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<img src="assets/img/logo.svg">
<h1>Payment</h1>
</header>
<section>
<h2 id="paytype">Payment</h2>
<div class="wrapQr">
<canvas id="qr"></canvas>
</div>
<div class="wrapAddress">
<a id="address"></a>
<input type="text" id="inputAddress" value="">
</div>
<div class="wrapAmount">
<h3>
<a id="amount"></a>
<input type="text" id="inputAmount" value="">
</h3>
</div>
<div class="wrapPaylink">
<a id="paylink">Pay from wallet</a>
</div>
</section>
<footer>
<div>
<strong>Security notice</strong>
</div>
<div>
Make sure your URL starts with:
</div>
<div class="uriWarning">
<kbd>🔒 https://pay.btc.horse</kbd>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrious/4.0.2/qrious.min.js" integrity="sha256-25ncr0CpJhgbzkUiR3wu/Fkk9sSykRG2qX+upHfJUos=" crossorigin="anonymous"></script>
<script src="assets/js/generate.js"></script>
</body>
</html>