forked from super3/peercoin.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallet.php
77 lines (76 loc) · 3.7 KB
/
wallet.php
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
<?php $page_title = "Wallets"; include ('header.php'); ?>
<h1 class="page-title"><?php echo $Locale->getText("wallet.title"); ?></h1>
<div class="row">
<div class="col-md-8 col-md-offset-2"><img src="assets/img/downloads/banner.svg" style="svg-fullwidth" /></div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<p style="font-size: 18px"><?php echo $Locale->getText("wallet.desc"); ?></p>
</div>
</div>
<div class="row">
<div class="col-md-2 col-md-offset-1">
<div class="tile text-center wallet-entry">
<img src="assets/img/logos/peerunity.svg" alt="" class="tile-image big-illustration svg-100">
<h3 class="tile-title"><?php echo $Locale->getText("wallet.peerunity"); ?></h3>
<p>
<?php echo $Locale->getText("wallet.peerunity_desc"); ?>
</p>
<div>
<a class="btn btn-primary btn-large btn-block" href="download-peerunity"><?php echo $Locale->getText("wallet.download"); ?> Peerunity</a>
</div>
</div>
</div>
<div class="col-md-2">
<div class="tile text-center wallet-entry">
<img src="assets/img/logos/peercoin.svg" alt="" class="tile-image big-illustration svg-100">
<h3 class="tile-title"><?php echo $Locale->getText("wallet.peercoinqt"); ?></h3>
<p>
<?php echo $Locale->getText("wallet.peercoinqt_desc"); ?>
</p>
<div>
<a class="btn btn-primary btn-large btn-block" href="download"><?php echo $Locale->getText("wallet.download"); ?> Peercoin-QT</a>
</div>
</div>
</div>
<div class="col-md-2">
<div class="tile text-center wallet-entry">
<img src="assets/img/logos/paper-wallet.png" height="100px" width="100px" alt="" class="tile-image big-illustration">
<h3 class="tile-title"><?php echo $Locale->getText("wallet.paper_wallet"); ?></h3>
<p>
<?php echo $Locale->getText("wallet.paper_wallet_desc"); ?>
</p>
<div>
<a class="btn btn-primary btn-large btn-block" href="http://wallet.peercointalk.org/"><?php echo $Locale->getText("wallet.download"); ?> Paper Wallet</a>
</div>
</div>
</div>
<div class="col-md-2">
<div class="tile text-center wallet-entry">
<img src="assets/img/logos/android-wallet.png" height="100px" width="100px" alt="" class="tile-image big-illustration">
<h3 class="tile-title"><?php echo $Locale->getText("wallet.android_wallet"); ?></h3>
<p>
<?php echo $Locale->getText("wallet.android_wallet_desc"); ?>
</p>
<div>
<a class="btn btn-primary btn-large btn-block" href="https://talk.peercoin.net/t/ann-peercoin-android-wallet-3-1-released/2846"><?php echo $Locale->getText("wallet.download"); ?> Android Wallet</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-2">
<div class="tile text-center wallet-entry">
<img src="assets/img/logos/online-wallet.png" height="100px" width="100px" alt="" class="tile-image big-illustration">
<h3 class="tile-title"><?php echo $Locale->getText("wallet.bkchain_wallet"); ?></h3>
<p>
<?php echo $Locale->getText("wallet.bkchain_wallet_desc"); ?>
</p>
<div>
<a class="btn btn-primary btn-large btn-block" href="https://bkchain.org/ppc/wallet"><?php echo $Locale->getText("wallet.visit_site"); ?> bkchain.org</a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include ('footer.php'); ?>