-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 1.52 KB
/
index.html
File metadata and controls
68 lines (63 loc) · 1.52 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ProcessOut.js Dev</title>
<style>
body {
font-family: "Helvetica Neue", Arial, sans-serif;
line-height: 1.5;
padding: 2em;
max-width: 800px;
margin: 0 auto;
}
h1 {
color: #333;
text-align: center;
}
.examples-list {
list-style: none;
padding: 0;
}
.examples-list li {
margin: 1em 0;
}
.examples-list a {
display: block;
padding: 1em;
background: #f5f5f5;
color: #333;
text-decoration: none;
border-radius: 4px;
transition: background 0.2s;
}
.examples-list a:hover {
background: #e0e0e0;
}
</style>
</head>
<body>
<h1>ProcessOut.js Development Environment</h1>
<ul class="examples-list">
<li>
<a href="examples/card-form/index.html">Card Form</a>
</li>
<li>
<a href="examples/card-form/index-with-scheme-selection.html">Card Form with Scheme Selection</a>
</li>
<li>
<a href="examples/dynamic-checkout/index.html">Dynamic Checkout</a>
</li>
<li>
<a href="examples/native-apm/index.html">Native APM</a>
</li>
<li>
<a href="examples/apm/index.html">APM</a>
</li>
<li>
<a href="examples/modal/index.html">Modal</a>
</li>
</ul>
</body>
</html>