-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
36 lines (33 loc) · 1.1 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Single Component Example - Mollie Components</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./styles.css" />
<link
rel="icon"
type="image/x-icon"
href="https://cdn.mollie.com/assets/favicon.ico"
/>
</head>
<body>
<div class="wrapper">
<form method="post" class="form" id="mcForm">
<div class="form-fields">
</div>
<button id="submit-button" class="submit-button" type="submit">
Pay €239.00
</button>
<div id="form-error" class="field-error" role="alert"></div>
</form>
</div>
<!-- we need to polyfill Promise, so we have Promise functionality available in IE11 -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/promise-polyfill/8.2.0/polyfill.min.js"
integrity="sha512-YK+bAjUuYdjPksbGQIIIsUn5hgYFsc+nXgx21Wwby9Mv+rJd8WZH2FRe1RdlTjFu1vxlGia9/RqmUMcZtX+BrA=="
crossorigin="anonymous"
></script>
<script src="https://js.mollie.com/v1/mollie.js"></script>
<script src="./script.js"></script>
</body>
</html>