forked from Gnucash/gnucash-htdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate.phtml
56 lines (42 loc) · 2.37 KB
/
donate.phtml
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
<?php
include ("lang.php");
$title = T_("Donations");
$description = T_("<span class=\"gnucash\">GnuCash</span> is Free Software and is made available free of charge. Your donation, which is purely optional, supports our worldwide community. If you like the software, please consider a donation. We are only a handfull of developers and other volunteers serving countless users worldwide.");
$page = basename($_SERVER['SCRIPT_NAME']);
include ("externals/header.phtml");
include ("externals/menu.phtml");
?>
<div id="content">
<h1><?=$title?></h1>
<p class="justify"><?=$description?></p>
<div class="featurecontainer">
<div class="featureborder">
<h2 class="featuretitle"><?=T_("Various ways to donate")?></h2>
</div>
<h3><?=T_("You can donate via the Sourceforge tip jar")?></h3>
<a style="float: left; margin: 0 10px 10px 0; valign: center;"
href="https://sourceforge.net/donate/index.php?group_id=192"><img
src="<?=$home?>/images/gnucash-sf-donation.png" alt="[Sourceforge]" /></a>
<p>
<a href="https://sourceforge.net/donate/index.php?group_id=192"><?=T_("Sourceforge tip jar")?></a>
</p>
<p><?=T_("The tip jar is run through Paypal into an account managed by IHTFP Consulting, owned by Derek Atkins. So don't be surprised when your payment goes there.")?></p>
<h3 style="clear: both;"><?= T_("You can transfer a donation to our bank account")?></h3>
<p><?=T_("Owner:")?> Geert Janssens<br />
<?=T_("Purpose: Donation")?><br />
<?=T_("IBAN:")?> BE88 9730 7545 7041<br />
<?=T_("Account:")?> 973-0754570-41<br />
<?=T_("Bank:")?> Argenta Bank Grimbergen<br />
<?=T_("Bank Identifier Code (BIC):")?> ARSPBE22XXX<br />
<?=T_("Address of bank:")?> Argenta, Lagesteenweg 96, 1850 Grimbergen, Belgium</p>
</div> <!-- featurecontainer -->
<div class="featurecontainer">
<div class="featureborder">
<h2 class="featuretitle"><?=T_("Why we appreciate your support")?></h2>
</div>
<p><?=T_("GnuCash is a volunteer effort. While we manage to keep our operational costs low there are inevitably expenses involved in keeping the servers running.")?></p>
<p><?=T_("Your contribution will be used to cover these expenses.")?></p>
<p><?=T_("Thank you for your support!")?></p>
</div> <!-- featurecontainer -->
</div> <!-- content -->
<?php include("externals/footer.phtml"); ?>