-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
96 lines (92 loc) · 3.95 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
<!doctype html>
<!-- Based on: https://getbootstrap.com/docs/4.5/examples/pricing/ -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Accept Bitcoin Nano - Payment gateway</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha512-MoRNloxbStBcD8z3M/2BmnT+rg4IsMxPkXaGh2zD6LGNNFE80W3onsAhRcMAMrSoyWL9xD7Ert0men7vR8LUZg==" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<style>
html {
font-size: 14px;
}
@media (min-width: 768px) {
html {
font-size: 16px;
}
}
.container {
max-width: 960px;
}
.btco-header {
max-width: 700px;
}
.card-deck .card {
min-width: 220px;
}
</style>
</head>
<body>
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
<h5 class="my-0 mr-md-auto font-weight-normal"></h5>
<nav class="my-2 my-md-0 mr-md-3">
<a class="btn btn-outline-primary" href="https://bitcoinbtco.org/">bitcoinbtco.org</a>
<a class="btn btn-outline-primary" href="https://www.reddit.com/r/bitcoinnanolabs/">r/bitcoinnanolabs</a>
</nav>
</div>
<div class="btco-header px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center">
<h1 class="display-4">Accept Bitcoin Nano</h1>
<p class="lead">Accept Bitcoin Nano is a self-hosted payment gateway for <a href="https://bitcoinnano.org">BTCO</a> currency.</p>
</div>
<div class="container">
<div class="card-deck mb-3 text-center">
<div class="card mb-4 shadow-sm">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Server</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"><i class="fas fa-server"></i> </small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Run this program on your server.</li>
<li>It will accept payments and forward to your account.</li>
<li>It will notify your backend with webhooks.</li>
<li>Does not need to know your private key.</li>
</ul>
<a class="btn btn-lg btn-block btn-primary" href="https://github.com/BitcoinbtcoLabs/accept-btco">Download from GitHub</a>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Client</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"><i class="fas fa-desktop"></i> </small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Integrate this JS library to your website.</li>
<li>Talks with Accept Bitcoin Nano server.</li>
<li>Shows QR code to users for payment.</li>
<li>Notifies user when payment is sent.</li>
</ul>
<a class="btn btn-lg btn-block btn-primary" href="https://github.com/BitcoinbtcoLabs/accept-btco-client">Download from GitHub</a>
</div>
</div>
</div>
<div class="text-center">
<a class="btn btn-lg btn-outline-primary" href="https://rawgit.com/accept-btco/accept-btco-client/master/example/index.html">View Demo</a>
</div>
<footer class="pt-4 my-md-5 pt-md-5 border-top">
<div class="row">
<div class="col-12 col-md">
<small class="d-block mb-3 text-muted">
© 2020 Accept Bitcoin Nano is created at <a href="https://put.io">Put.io</a> by
<a href="http://cenkalti.com">Cenk Alti</a>,
<a href="http://altayaydemir.com">Altay Aydemir</a> and
<a href="https://twitter.com/muratbildirim">Murat Yildirim</a>.
</small>
</div>
</div>
</footer>
</div>
</body>
</html>