<div id="paypal-button-container-P-53F59899VK056835PM4V4T3Q"></div>
<script src="https://www.paypal.com/sdk/js?client-id=AerHu50OdrtbiL5TkNY8UUtdNMjOXaj7JM5KayIjEcHSNEOh5ygd4X_Rv-IBRgteo3U5_bH2L5m9ibGb&vault=true&intent=subscription" data-sdk-integration-source="button-factory"></script>
<script>
paypal.Buttons({
style: {
shape: 'pill',
color: 'blue',
layout: 'vertical',
label: 'subscribe'
},
createSubscription: function(data, actions) {
return actions.subscription.create({
/* Creates the subscription */
plan_id: 'P-53F59899VK056835PM4V4T3Q',
quantity: 1 // The quantity of the product for a subscription
});
},
onApprove: function(data, actions) {
alert(data.subscriptionID); // You can add optional success message for the subscriber here
}
}).render('#paypal-button-container-P-53F59899VK056835PM4V4T3Q'); // Renders the PayPal button
</script>