-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpremium.php
35 lines (31 loc) · 822 Bytes
/
premium.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
<?php
require 'app/init.php';
if ($user->premium) {
header('Location: index.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Stripe</title>
</head>
<body>
<p>
You are about to go Premium.
</p>
<form action="payment_charge.php" method="POST">
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="<?php echo $stripe['publishable'] ?>"
data-amount="1000"
data-name="Site Name"
data-description="Premium Membership"
data-email="<?php echo $user->email; ?>"
data-currency="usd"
data-image="https://stripe.com/img/documentation/checkout/marketplace.png"
data-locale="auto">
</script>
</form>
</body>
</html>