-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtreasury.php
36 lines (33 loc) · 1.14 KB
/
treasury.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
<?php
require_once('template.php');
page_header('SLUG Treasury Page');
echo <<<END
<div id="content3">
<p>
Here's where you find out what your donations buy. Below is a detailed
breakdown of the monies the group has received and what's been done with
them. If you'd like to donate money to SLUG, we have a bank account. You
may make the check out to <STRONG>SLUG</STRONG> or <STRONG>Suncoast Linux
Users Group</STRONG>. If you can't attend meetings and but would like to
donate to the group, you may write a check (as above) and send it to:
<P>
<STRONG>
SLUG<BR>
c/o Quill & Mouse Studios, Inc.<BR>
1901 N. Highland Ave.<BR>
Clearwater, FL 33755<BR>
</STRONG>
<P>
Note: although no one <EM>personally</EM> benefits from your donations
(meaning we are non-profit), we are <EM>not</EM> organized as a corporation
or non-profit corporation under Florida law. Bear that in mind when making
donations.
<P>
<HR>
<P>
<hr>
<iframe width=780 height=100% frameborder=0 src=https://spreadsheets.google.com/a/unix-people.org/ccc?key=0AhnN6APggaW2dG1iNTY0bnVheVUxODlLS3VDRTBicFE&output=html&chrome=false&widget=true&hl=en></iframe>
END;
print "</div>\n";
page_footer();
?>