forked from EYESTOSPYCNF/eyestospywebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate.html
33 lines (29 loc) · 1.04 KB
/
donate.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="donate.css">
<link rel="icon" href="SPY PFP.png" type="image/png">
<title>EYESTOSPY DONATE</title>
</head>
<body>
<div class="background"></div>
<div class="container">
<div id="donate-button-container">
<div id="donate-button"></div>
<script src="https://www.paypalobjects.com/donate/sdk/donate-sdk.js" charset="UTF-8"></script>
<script>
PayPal.Donation.Button({
env:'production',
hosted_button_id:'Y2T46Q4QSNGHN',
image: {
src:'https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif',
alt:'Donate with PayPal button',
title:'PayPal - The safer, easier way to pay online!',
}
}).render('#donate-button');
</script>
</div>
</body>
</html>