-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
41 lines (40 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>
<form action="payment.php" method="post">
<script
src="https://button.paymill.com/v1/"
id="buttonPayment"
data-label="Buy the Product, pay with CreditCard"
data-title="Buy our product"
data-description="It's a great product"
data-amount="250"
data-currency="EUR"
data-submit-button="Pay 2.50 EUR"
data-elv="false"
data-lang="de-DE"
data-public-key="TESTPUBLICKEY">
</script>
</form>
<form action="subscription.php" method="post">
<script
src="https://button.paymill.com/v1/"
id="buttonSubscription"
data-label="Subscribe now, pay with CreditCard"
data-title="Subscribe now."
data-description="It's a great product"
data-amount="250"
data-currency="EUR"
data-submit-button="Pay 2.50 EUR"
data-elv="false"
data-lang="de-DE"
data-public-key="TESTPUBLICKEY">
</script>
</form>
</body>
</html>