forked from y7kim/agency-jekyll-theme
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfee.html
96 lines (93 loc) · 3.88 KB
/
fee.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<div id="paypal-button-container-P-2A337296GK2506105MLVHWCQ" style="border: ridge 3px #28a745; margin: 20px; padding: 10px">
<h3> 1. 正会費の年会費定期支払い</h3>
毎年1回3500円が請求されます。
</div>
<script src="https://www.paypal.com/sdk/js?client-id=ATuT074Rd5alp07TFNOx7lySX0BSuEewgQHvJd4VIGZy8GaNwhUrf2D-LVnxwtCXX53AqB8P5KZDVXDn&vault=true&intent=subscription" data-sdk-integration-source="button-factory"></script>
<script>
paypal.Buttons({
style: {
shape: 'rect',
color: 'blue',
layout: 'vertical',
label: 'paypal'
},
createSubscription: function(data, actions) {
return actions.subscription.create({
/* Creates the subscription */
plan_id: 'P-2A337296GK2506105MLVHWCQ'
});
},
onApprove: function(data, actions) {
alert(data.subscriptionID); // You can add optional success message for the subscriber here
}
}).render('#paypal-button-container-P-2A337296GK2506105MLVHWCQ'); // Renders the PayPal button
</script>
<div id="paypal-button-container-P-72E84618PJ7528153MLVQOPY" style="border: ridge 3px #28a745; margin: 20px; padding: 10px">
<h3> 2. 正会員の初年度入会金+年会費の定期支払い</h3>
初年度は入会金と会費の合計7000円が請求されます。次年度から会費3500円が請求されます。
</div>
<script>
paypal.Buttons({
style: {
shape: 'rect',
color: 'blue',
layout: 'vertical',
label: 'paypal'
},
createSubscription: function(data, actions) {
return actions.subscription.create({
/* Creates the subscription */
plan_id: 'P-72E84618PJ7528153MLVQOPY'
});
},
onApprove: function(data, actions) {
alert(data.subscriptionID); // You can add optional success message for the subscriber here
}
}).render('#paypal-button-container-P-72E84618PJ7528153MLVQOPY'); // Renders the PayPal button
</script>
<div id="paypal-button-container-P-0K151711829850245MLVQITY" style="border: ridge 3px #28a745; margin: 20px; padding: 10px">
<h3> 3. 賛助会費(個人)の年会費定期支払い</h3>
毎年、3500円が請求されます。
</div>
<script>
paypal.Buttons({
style: {
shape: 'rect',
color: 'blue',
layout: 'vertical',
label: 'paypal'
},
createSubscription: function(data, actions) {
return actions.subscription.create({
/* Creates the subscription */
plan_id: 'P-0K151711829850245MLVQITY'
});
},
onApprove: function(data, actions) {
alert(data.subscriptionID); // You can add optional success message for the subscriber here
}
}).render('#paypal-button-container-P-0K151711829850245MLVQITY'); // Renders the PayPal button
</script>
<div id="paypal-button-container-P-8HX37534RU5103018MLZ3BTY" style="border: ridge 3px #28a745; margin: 20px; padding: 10px">
<h3> 4. 賛助会費(法人)の定期支払い(年次)</h3>
毎年、50000円が請求されます。
</div>
<script>
paypal.Buttons({
style: {
shape: 'rect',
color: 'blue',
layout: 'vertical',
label: 'paypal'
},
createSubscription: function(data, actions) {
return actions.subscription.create({
/* Creates the subscription */
plan_id: 'P-8HX37534RU5103018MLZ3BTY'
});
},
onApprove: function(data, actions) {
alert(data.subscriptionID); // You can add optional success message for the subscriber here
}
}).render('#paypal-button-container-P-8HX37534RU5103018MLZ3BTY'); // Renders the PayPal button
</script>