forked from stripe-samples/accept-a-payment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ideal.html
48 lines (39 loc) · 1.2 KB
/
ideal.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
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>iDEAL</title>
<link rel="stylesheet" href="css/base.css" />
<script src="https://js.stripe.com/v3/"></script>
<script src="/utils.js" defer></script>
<script src="/ideal.js" defer></script>
</head>
<body>
<main>
<a href="/">home</a>
<h1>iDEAL</h1>
<form id="payment-form">
<label for="name">
Name
</label>
<input id="name" value="Jenny Rosen" required>
<!--
Using a label with a for attribute that matches the ID of the
Element container enables the Element to automatically gain focus
when the customer clicks on the label.
-->
<label for="ideal-bank-element">
iDEAL Bank
</label>
<div id="ideal-bank-element">
<!-- A Stripe Element will be inserted here. -->
</div>
<button type="submit">Pay</button>
<!-- Used to display form errors. -->
<div id="error-message" role="alert"></div>
</form>
<div id="messages" role="alert"></div>
</main>
</body>
</html>