-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsupportus.php
77 lines (72 loc) · 3.58 KB
/
supportus.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
include_once $_SERVER['DOCUMENT_ROOT'] . '/includes/tools/bmac.php';
?>
<!DOCTYPE html>
<html lang="en">
<?php
$pageTitle = 'Support us';
include 'includes/header.php';
?>
<body>
<?php include 'includes/navigation.php';?>
<div id="wrapper">
<div class="flex-container flex-center">
<div class="tx-icon"></div>
<h1 class="m-0"><span class="color-main text-bold">FMDX.org</span> </h1>
</div>
<div class="flex-container">
<main>
<div class="panel panel-big text-center" style="padding: 30px 50px;">
<h2>Support us!</h2>
<p class="text-left">We can bring you more free projects & updates thanks to your generosity. Finances donates to the FMDX.org project are being used strictly for FMDX.org itself and its projects.</p>
<h3 class="color-main">Donations</h3>
<div class="flex-container flex-center">
<div>
<p class="text-bold m-0" style="font-size: 20px"><?php echo date('F Y');?></p>
<p class="m-0"><?php echo $total_amount?></p>
</div>
<div class="text-center" style="width:400px";>
<p class="text-center">Thank you!</p>
<p>❤️</p>
</div>
<div>
<a href="https://buymeacoffee.com/fmdx" target="_blank"><button class="btn-small m-auto">Support us</button></a>
</div>
</div>
<h3 class="color-main">How we use your donations</h3>
<p>We cover the following items using your donations:<p>
<div class="flex-container" style="justify-content: center">
<div class="text-left p-side-20">
<h4>Services</h4>
<ul style="list-style-type: none; padding:0;">
<li>Domain</li>
<li>Webhosting</li>
<li>Server for misc. services</li>
</ul>
</div>
<div class="text-left p-side-20">
<h4>Hardware</h4>
<ul style="list-style-type: none; padding:0;">
<li>Custom hardware builds</li>
<li>HW for SW development</li>
<li>Hardware for reviews</li>
</ul>
</div>
<div class="text-left p-side-20">
<h4>Projects</h4>
<ul style="list-style-type: none; padding:0;">
<li>Sponsored webservers</li>
<li>Hardware for Developers</li>
</ul>
</div>
</div>
<hr>
<p>Thank you for supporting open-source projects!</p>
</div>
</main>
<?php include 'includes/sidepanels.php';?>
</div>
</div>
<?php include 'includes/footer.php';?>
</body>
</html>