-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate.php
57 lines (54 loc) · 2.96 KB
/
donate.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
<?php
session_start();
$sqluser = "bdb3dd3c5ad4b1";
$sqlpassword = "ec474796";
$sqldatabase = "heroku_45fb7d407a198a1";
?>
<!DOCTYPE html>
<html>
<head>
<link href="loginstyle.css" rel="stylesheet" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<title>Authentic and Permanent</title>
<meta charset="utf-8"/>
<meta name="description" content="A posthuman art magazine for technological determinists."/>
<meta name="keywords" content="Art"/>
</head>
<body>
<div class="w3-sidebar w3-bar-block w3-black" style="width:15%;right:0">
<div id="sidebar-elements">
<a href="./home.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Home]</a>
<a href="./about.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[About]</a>
<a href="./latestissue.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Latest Issue]</a>
<a href="./pastissues.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Past Issues]</a>
<a href="./artists.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Artists]</a>
<a href="./staff.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Staff]</a>
<a href="./submissions.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Submissions]</a>
<a href="./login.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Login]</a>
<a href="./shop.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Shop]</a>
<a href="./donate.php" class="w3-bar-item w3-button w3-hover-none w3-hover-text-red">[Donate]</a><br><br><br><br>
<div id="loggedin" class="w3-bar-item">
<?php if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] == true) {
echo "Logged in as:";
echo "<br>";
echo $_SESSION["fname"].' (@'.$_SESSION["uname"].').';
echo "<br>";
echo '<a href="./loggedout.php" class="w3-hover-none w3-hover-text-red">[Logout?]</a>';
}?>
</div>
</div>
</div>
<div id="stuff">
<div id="box">
<p>Donations</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_donations" />
<input type="hidden" name="business" value="BW9Z5FRLGTKXL" />
<input type="hidden" name="currency_code" value="USD" />
<input type="submit" value="Donate" name="submit" title="PayPal donation button." />
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" />
</form>
</div>
</div>
</body>
</html>