-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcommerce.html
More file actions
94 lines (85 loc) · 3.7 KB
/
commerce.html
File metadata and controls
94 lines (85 loc) · 3.7 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="BrowserBox commercial licensing for clientless Remote Browser Isolation with 60 FPS streaming. Secure your commercial license.">
<title>BrowserBox Commercial License</title>
<link rel="icon" type="image/svg+xml" href="logo.svg">
<link rel="stylesheet" href="style.css">
<script async src="https://js.stripe.com/v3/pricing-table.js"></script>
</head>
<body class="subpage">
<nav class="home-nav">
<div class="brand">
<img src="logo.svg" alt="BrowserBox Logo">
<span>BrowserBox</span>
</div>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/index.html#get-started">Get Started</a></li>
<li><a href="/index.html#features">Features</a></li>
<li><a href="/index.html#compliance">Compliance</a></li>
</ul>
<div class="nav-cta">
<a href="https://browserbox.io/evaluate" class="cta primary">Start Eval</a>
</div>
</nav>
<main class="sub-wrap">
<section class="sub-hero">
<div class="kicker">Commercial License</div>
<h1>License BrowserBox for production teams</h1>
<p>Commercial licensing includes full access, updates, and support. Choose your seat count and complete checkout securely.</p>
<div class="cta-row">
<a href="/noncommercial.html" class="cta secondary">Non-Commercial Options</a>
<a href="mailto:sales@dosaygo.com" class="cta secondary">Talk to Sales</a>
</div>
</section>
<section class="panel stripe-panel">
<h2>Commercial pricing</h2>
<p class="meta">Seats are concurrent users. Adjust quantity before entering card details.</p>
<stripe-pricing-table pricing-table-id="prctbl_1Qp4l7BKxtsqOlorniy1P0Kk"
publishable-key="pk_live_519b8xgBKxtsqOloreQVhWpxIYVYN4FGyf60PLrQUHPGCFxW42ovujJ9n1qzduTAE06uOvHwshX7Gd7P4S3kk5APM00v8ZFDc73">
</stripe-pricing-table>
<script>
const url = new URL(location.href);
const cri = url.searchParams.get('cri');
const seats = url.searchParams.get('quantity');
if (cri) {
document.currentScript.previousElementSibling.setAttribute('client-reference-id', cri);
fetch('/api/license-visit', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ cri })
})
.then(response => {
if (!response.ok) console.warn('Ping failed:', response.status);
})
.catch(error => console.warn('Ping error:', error));
if (seats && seats !== '1') {
alert(`\nWARNING: Error selecting ${seats} seats!\n\n\tPlease manually select your subscription, then:
1. Tap Subscribe.
2. Adjust the Qty to ${seats} seats.
Do this BEFORE you enter your card details to buy.
`);
}
}
</script>
</section>
<section class="panel">
<h2>Need help?</h2>
<p>Questions about licensing, seats, or deployment? Email <a href="mailto:sales@dosaygo.com">sales@dosaygo.com</a>.</p>
<p class="meta">Commercial product. A valid license is required for all use, including development and evaluation.</p>
</section>
</main>
<footer class="home-footer">
<div class="footer-links">
<a href="https://dosaygo.com/privacy.txt.html">Privacy Policy</a>
<a href="https://dosaygo.com/terms.txt.html">Terms of Service</a>
<a href="https://github.com/BrowserBox/BrowserBox">GitHub</a>
<a href="mailto:sales@dosaygo.com">sales@dosaygo.com</a>
</div>
<p>(c) 2025 DOSAYGO Corporation USA. All rights reserved.</p>
</footer>
</body>
</html>