forked from paypal-examples/v6-web-sdk-sample-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 634 Bytes
/
index.html
File metadata and controls
24 lines (21 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Upstream Messages - Minimal Integration - PayPal Web SDK</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<h1>Upstream Messages Advanced Integration</h1>
<h2>HTML config with JS to update amount</h2>
<div id="message-background">
<paypal-message id="paypal-message"></paypal-message>
</div>
<script src="app.js"></script>
<script
async
src="https://www.sandbox.paypal.com/web-sdk/v6/core"
onload="onPayPalLoaded()"
></script>
</body>
</html>