-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpro.html
140 lines (117 loc) · 4.01 KB
/
pro.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<html>
<head>
<!-- tuplate_start(head.html) -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>patchbay - Poor Man's Web</title>
<link rel="stylesheet"
href="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/atelier-sulphurpool-dark.min.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-89445274-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-89445274-5');
</script>
<!-- tuplate_end() -->
<link rel="stylesheet" type="text/css" href="./styles.css">
<script src="https://js.stripe.com/v3/"></script>
<style>
.pro-content {
font-size: 22px;
}
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 22px;
cursor: pointer;
}
button:hover {
border: 1px solid black;
}
</style>
</head>
<body>
<div class='content'>
<!-- tuplate_start(header.html) -->
<header>
<nav class='navbar'>
<a href='./index.html' class='navbar__col'>
<img class='navbar__image' src='./logo.svg' alt='logo'></img>
</a>
<span class='navbar__col'>
<a class='navbar__link' href='./index.html'>Home</a>
</span>
<span class='navbar__col'>
<a class='navbar__link' href='./docs/index.html'>Docs</a>
</span>
<span class='navbar__col'>
<a class='navbar__link' href='./blog/index.html'>Blog</a>
</span>
<span class='navbar__col'>
<a class='navbar__link' href='./pro.html'>Pro</a>
</span>
</nav>
</header>
<!-- tuplate_end() -->
<div class='pro-content'>
<p>
You can subscribe to <strong>patchbay pro</strong> for $8/month
(USD). Here are the benefits:
</p>
<ul>
<li>
Private channel with simple but flexible authorization system. You
can easily control who can write to what sub-paths under your
channel. This can be used for example to host public/private sites
and web apps, access-controlled file sharing, and many other
things. See <a href='./docs/pro.html'>the docs</a> for more
information.
</li>
<li>
Much higher rate limit for requests (currently unlimited).
</li>
<li>
Much higher bandwidth (throughput) limit per request (currently
unlimited).
</li>
<li>
Much higher total monthly data transfer limit (currently
unlimited).
</li>
</ul>
<button id="checkout-button">Subscribe now via Stripe</button>
<p>
If you run into any problems, please email us at
<a href="mailto:[email protected]?subject=Help with patchbay.pub">[email protected]</a>
</p>
</div>
</div>
<script>
const successUrl = window.location.href;
const cancelUrl = window.location.href;
const stripe = Stripe('pk_live_mVOgEp9cZuoaWbeIimqv0QDR00M7dYNZ8y');
const checkoutButton = document.querySelector('#checkout-button');
checkoutButton.addEventListener('click', () => {
stripe.redirectToCheckout({
items: [{
plan: 'plan_GSRpftfFdXHAdj',
quantity: 1
}],
successUrl,
cancelUrl,
});
});
</script>
<!-- tuplate_start(footer.html) -->
<script data-goatcounter="https://patchbay_pub.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
<!-- tuplate_end() -->
</body>
</html>