forked from stripe-samples/accept-a-payment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacss.html
More file actions
48 lines (40 loc) · 1.41 KB
/
acss.html
File metadata and controls
48 lines (40 loc) · 1.41 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Pre-authorized debit in Canada</title>
<link rel="stylesheet" href="css/base.css" />
<script src="https://js.stripe.com/v3/"></script>
<script src="/utils.js" defer></script>
<script src="/acss.js" defer></script>
</head>
<body>
<main>
<a href="/">home</a>
<h1>Pre-authorized debit in Canada (ACSS)</h1>
<p>
<h4>Try these test email addresses:</h4>
<dl>
<dt><strong>Immediately attempt</strong></dt>
<dd><code>{any_prefix}+skip_waiting@{any_domain}</code></dd>
<dt><strong>Skip the mandate delay and receive the micro-deposit verification</strong></dt>
<dd><code>{any_prefix}+skip_waiting+test_email@{any_domain}</code></dd>
</dl>
</p>
<form id="payment-form">
<label for="name">
Name
</label>
<input id="name" value="Jenny Rosen" required />
<label for="email">
Email
</label>
<input id="email" value="jenny+skip_waiting@example.com" required />
<button id="submit">Pay</button>
</form>
<div id="messages" role="alert" style="display: none;"></div>
<p> <a href="https://youtu.be/KWhynzGP5bw" target="_blank">Watch a demo walkthrough</a> </p>
</main>
</body>
</html>