-
Notifications
You must be signed in to change notification settings - Fork 0
/
eligibility-check.html
25 lines (25 loc) · 1.23 KB
/
eligibility-check.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eligiblity Check</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="nav-bar">
<button type="button" class="nav-button" onclick="window.location.assign('./index.html')">Index</button>
<button type="button" class="nav-button" onclick="window.location.assign('./seamless.html')">Seamless View Test</button>
<button type="button" class="nav-button" onclick="window.location.assign('./iframe.html')">IFrame Tester</button>
<button type="button" class="nav-button" onclick="window.location.assign('./eligibility-check.html')">Eligibility Check</button>
</div>
<script src="https://ecom.externalintegration.payex.com/checkout/integration" type="text/javascript" defer></script>
<script src="eligibility.js" type="text/javascript" defer></script>
<h1>Eligiblity Demo</h1>
<button onclick="checkEligibility()">Check Eligibility</button>
<h2>Your UserAgent is registered as: </h2>
<div id="userAgent"></div>
<h2>The following instruments will show up in the payment menu: </h2>
<div id="container"></div>
</body>
</html>