-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (50 loc) · 1.84 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="dark" />
<title>
Freemius Checkout JS - Without jQuery or other dependencies
</title>
</head>
<body>
<div id="app">
<p>
<label for="site">Number of Licenses</label>
</p>
<p>
<select name="site" id="site">
<option value="1" selected>Single</option>
<option value="5">5 Sites</option>
<option value="0">Unlimited Sites</option>
</select>
</p>
<p style="font-size: 10px; font-style: italic">
Some licenses may not be available for all plans
</p>
<p>
<label for="frequency">Billing Frequency</label>
</p>
<p>
<select name="frequency" id="frequency">
<option value="annual">Yearly</option>
<option value="monthly">Monthly</option>
<option value="lifetime">Lifetime</option>
</select>
</p>
<p>
<button id="plan-1">Buy Starter</button>
<button id="plan-2">Buy Professional</button>
<button id="plan-3">Buy Business</button>
</p>
<p>Check Browser DevTool for more information</p>
<p>
<a href="/cypress/pages/global/">Global (CDN) Test</a>
<a href="/cypress/pages/adapter/">Adapter Test</a>
</p>
</div>
<script type="module" src="/src/demo.ts"></script>
</body>
</html>