forked from stripe-samples/accept-a-payment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalipay.html
More file actions
34 lines (27 loc) · 840 Bytes
/
alipay.html
File metadata and controls
34 lines (27 loc) · 840 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
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Alipay</title>
<link rel="stylesheet" href="css/base.css" />
<script src="https://js.stripe.com/v3/"></script>
<script src="/utils.js" defer></script>
<script src="/alipay.js" defer></script>
</head>
<body>
<main>
<a href="/">home</a>
<h1>Alipay</h1>
<form id="payment-form">
<label for="name">
Name
</label>
<input id="name" value="Jenny Rosen" required />
<button id="submit">Pay</button>
</form>
<div id="messages" role="alert" style="display: none;"></div>
<p> <a href="https://youtu.be/0Dp0BwIOROA" target="_blank">Watch a demo walkthrough</a> </p>
</main>
</body>
</html>