-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (120 loc) · 5.79 KB
/
index.html
File metadata and controls
126 lines (120 loc) · 5.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tonder SDK Demos</title>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
</head>
<body class="bg-light">
<div class="container py-5">
<header class="text-center mb-5">
<h1 class="display-5 fw-semibold mb-3">Tonder SDK Demos</h1>
<p class="text-muted mb-0">
Explore our interactive demos to integrate payments with Tonder SDK
</p>
</header>
<div class="row g-4">
<!-- Demo 1 -->
<div class="col-md-6">
<div class="card h-100 shadow-sm border-0">
<div class="card-body d-flex flex-column">
<h2 class="h5 mb-3">Cards Full SDK - APMs Lite SDK</h2>
<p class="text-muted small mb-3">
Complete integration of credit/debit cards and alternative payment methods using Tonder Lite SDK with validation and error handling.
</p>
<ul class="small text-muted mb-4 ps-3">
<li>Deposit modal</li>
<li>Card support (Full SDK)</li>
<li>APMs: MercadoPago, OXXO Pay, SPEI</li>
<li>Error handling & state</li>
</ul>
<div class="mt-auto d-flex flex-column gap-2 align-items-start">
<a href="./cards-full-apms-lite/index.html" class="btn btn-outline-primary btn-sm">View Demo</a>
<small class="text-muted">Source: <a class="text-decoration-none" target="_blank" rel="noopener" href="https://github.com/tonderio/demos/tree/main/cards-full-apms-lite">GitHub</a></small>
</div>
</div>
</div>
</div>
<!-- Demo 2 -->
<div class="col-md-6">
<div class="card h-100 shadow-sm border-0">
<div class="card-body d-flex flex-column">
<h2 class="h5 mb-3">All Methods Lite SDK</h2>
<p class="text-muted small mb-3">
Deposit flow with multiple payment methods and specific limits for each option.
</p>
<ul class="small text-muted mb-4 ps-3">
<li>Deposit modal</li>
<li>Card (Visa/Mastercard)</li>
<li>MercadoPago</li>
<li>OXXO Pay</li>
<li>SPEI</li>
</ul>
<div class="mt-auto d-flex flex-column gap-2 align-items-start">
<a href="./lite-all-methods/index.html" class="btn btn-outline-primary btn-sm">View Demo</a>
<small class="text-muted">Source: <a class="text-decoration-none" target="_blank" rel="noopener" href="https://github.com/tonderio/demos/tree/main/lite-all-methods">GitHub</a></small>
</div>
</div>
</div>
</div>
<!-- Demo 3 -->
<div class="col-md-6">
<div class="card h-100 shadow-sm border-0">
<div class="card-body d-flex flex-column">
<h2 class="h5 mb-3">Cards Full SDK - APMs Lite SDK (Iframe Flow)</h2>
<p class="text-muted small mb-3">
Same as the cards and APMs demo, but the entire redirect flow for alternative payment methods runs embedded inside iframes.
</p>
<ul class="small text-muted mb-4 ps-3">
<li>Full flow inside iframes</li>
<li>Cards (Full SDK)</li>
<li>APMs: MercadoPago, OXXO Pay, SPEI</li>
<li>Error & state handling</li>
</ul>
<div class="mt-auto d-flex flex-column gap-2 align-items-start">
<a href="./cards-full-apms-lite-with-iframe/index.html" class="btn btn-outline-primary btn-sm">View Demo</a>
<small class="text-muted">Source: <a class="text-decoration-none" target="_blank" rel="noopener" href="https://github.com/tonderio/demos/tree/main/cards-full-apms-lite-with-iframe">GitHub</a></small>
</div>
</div>
</div>
</div>
<!-- Demo 4 -->
<div class="col-md-6">
<div class="card h-100 shadow-sm border-0">
<div class="card-body d-flex flex-column">
<h2 class="h5 mb-3">Hosted Checkout with Iframe</h2>
<p class="text-muted small mb-3">
Complete checkout experience hosted by Tonder and embedded in an iframe for seamless integration.
</p>
<ul class="small text-muted mb-4 ps-3">
<li>Hosted checkout session</li>
<li>Embedded in iframe</li>
<li>Multiple payment methods</li>
<li>Cards, OXXO Pay, SPEI</li>
</ul>
<div class="mt-auto d-flex flex-column gap-2 align-items-start">
<a href="./hosted-checkout-iframe/index.html" class="btn btn-outline-primary btn-sm">View Demo</a>
<small class="text-muted">Source: <a class="text-decoration-none" target="_blank" rel="noopener" href="https://github.com/tonderio/demos/tree/main/hosted-checkout-iframe">GitHub</a></small>
</div>
</div>
</div>
</div>
</div>
<footer class="text-center mt-5">
<small class="text-muted">Powered by <a href="https://tonder.io" class="text-decoration-none">Tonder</a></small>
</footer>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>