-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.html
44 lines (39 loc) · 1.19 KB
/
success.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Stripe Checkout Sample</title>
<meta name="description" content="A demo of Stripe Payment Intents" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/global.css" />
<script src="./success.js" defer></script>
</head>
<body>
<div class="togethere-background"></div>
<div class="sr-root">
<div class="sr-main">
<header class="sr-header">
<div class="sr-header__logo"></div>
</header>
<div class="sr-payment-summary completed-view">
<h1>Your payment succeeded</h1>
<h4>
View CheckoutSession response:
</h4>
</div>
<div class="completed-view-section">
<pre>
</pre>
<button onclick="window.location.href = '/';">Restart demo</button>
<form id="manage-billing-form">
<button>Manage Billing</button>
</form>
</div>
</div>
<div class="sr-content">
</div>
</div>
</div>
</body>
</html>