-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (27 loc) · 819 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout Frames v2: 1-liner</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form id="payment-form" method="POST" action="server/server.php">
<div class="one-liner">
<div>
<input type="text" name="" placeholder="FirstName">
<input type="text" name="" placeholder="LastName">
</div>
<div class="card-frame"></div>
<button id="pay-button" disabled>
PAY GBP 24.99
</button>
</div>
<p class="error-message"></p>
<p class="success-payment-message"></p>
</form>
<script src="https://cdn.checkout.com/js/framesv2.min.js"></script>
<script src="app.js"></script>
</body>
</html>