-
Notifications
You must be signed in to change notification settings - Fork 40
/
donate.php
71 lines (68 loc) · 2.24 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
require_once('include/debug.php');
require_once('include/login/auth.php');
?>
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="include/style.css" media="screen"/>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="img/apple.png" />
<title>Contact - ecDB</title>
<?php include_once("include/analytics.php") ?>
</head>
<body>
<div id="wrapper">
<?php
if(isset($_SESSION['SESS_MEMBER_ID'])){
echo '<!-- Header -->';
include 'include/header.php';
echo '<!-- END -->';
echo '<!-- Main menu -->';
include 'include/menu.php';
echo '<!-- END -->';
}
else {
echo '<!-- Header -->';
echo '<div id="header">';
echo '<div class="logoWrapper">';
echo '<a href ="."><span class="logoImage"></span></a>';
echo '</div>';
echo '</div>';
echo '<!-- END -->';
echo '<!-- Main menu -->';
echo '<div id="menu">';
echo '<ul>';
echo '<li><a href=".">Login</a></li>';
echo '<li><a href="register.php">Register</a></li>';
echo '<li><a href="about.php">About</a></li>';
echo '<li><a href="/blog">Blog</a></li>';
echo '</ul>';
echo '</div>';
echo '<!-- END -->';
}
?>
<!-- Main content -->
<div id="content">
<div class="loginWrapper">
<div class="left">
<h1>Donate</h1>
ecDB is completely free!<br />
However, if you like ecDB you may use the button below to donate some money to the project!<br /><br />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="7ZT5UY5XMHA52">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
</form>
</div>
<div class="right"></div>
</div>
</div>
<!-- END -->
<!-- Text outside the main content -->
<?php include 'include/footer.php'; ?>
<!-- END -->
</div>
</body>
</html>