-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (38 loc) · 2.21 KB
/
index.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
<html>
<head>
<title>Garoa Hacker Clube - Pagamento de Mensalidade de Associado e Doações</title>
</head>
<body>
<h1>Garoa Hacker Clube - Pagamento de mensalidade de associado</h1>
<p>Para pagar a mensalidade de associado do Garoa Hacker Clube de forma recorrente no valor de <strong>R$ 187</strong> (cento e oitenta e sete reais) pelo PayPal clique no botão a seguir.</p>
<div id="paypal-button-container-P-9TP3259813133982JMDPFP3Y"></div>
<p>Caso prefira doar um valor mensal, clique no botão doar abaixo.</p>
<form action="https://www.paypal.com/donate" method="post" target="_top">
<input type="hidden" name="hosted_button_id" value="TPPZB2LQJDV2S" />
<input type="image" src="https://www.paypalobjects.com/pt_BR/i/btn/btn_donate_LG.gif" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Faça doações com o botão do PayPal" />
<img alt="" border="0" src="https://www.paypal.com/pt_BR/i/scr/pixel.gif" width="1" height="1" />
</form>
<p>Se quiser fazer um pix para o garoa nossa chave é o email: <strong>[email protected]</strong>
<p>Ou acesse a página de <a href="https://garoa.net.br/wiki/Mensalidades">mensalidades na Wiki do Garoa</a> para saber mais.</p>
<script src="https://www.paypal.com/sdk/js?client-id=AXSxP9Cgc2oVyxVUyUX4SX7klY5suR_MBgfsMFsJAgNIwyGtzR-HfERpW5ZAH_5XvE-CgZRj-8OUTCnD&vault=true&intent=subscription" data-sdk-integration-source="button-factory"></script>
<script>
paypal.Buttons({
style: {
shape: 'rect',
color: 'gold',
layout: 'vertical',
label: 'subscribe'
},
createSubscription: function(data, actions) {
return actions.subscription.create({
/* Creates the subscription */
plan_id: 'P-9TP3259813133982JMDPFP3Y'
});
},
onApprove: function(data, actions) {
alert('Obrigado por contribuir com o Garoa!'); // You can add optional success message for the subscriber here
}
}).render('#paypal-button-container-P-9TP3259813133982JMDPFP3Y'); // Renders the PayPal button
</script>
</body>
</html>