-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstub-view.html
54 lines (44 loc) · 1.55 KB
/
stub-view.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
<!DOCTYPE html>
<html>
<head>
<title>OLSKClub</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/normalize.css/normalize.css">
<link rel="stylesheet" type="text/css" href="https://olsk.rosano.ca/OLSKDecor/master/ui-style.css">
<script src="https://unpkg.com/micromodal/dist/micromodal.min.js"></script>
<script src="./main.js"></script>
<link rel="stylesheet" type="text/css" href="./ui-micromodal.css" />
<link rel="stylesheet" type="text/css" href="./ui-style.css" />
<style>
:root {
--OLSKCommonBackground: #32254E;
--ghost-accent-color: #e5689b;
--OLSKCommonBackground: #32254E;
--OLSKCommonForeground: #fff5fd;
--STRForegroundAlternative: #a177fb;
}
</style>
</head>
<body>
<p>
<a class="STRAccountOutLink OLSKDecorTappable gh-portal-close" data-portal="signin">Sign in to access extended episodes.</a>
</p>
<p>
<a class="STRPromptButton OLSKDecorPress OLSKDecorPressCall OLSKDecorTappable gh-portal-close" data-portal="signup">Subscribe</a>
</p>
<p>
<span class="STRPromptExistingBlurb">Already a member?</span>
<a class="STRPromptExistingLink OLSKDecorTappable gh-portal-close" data-portal="signin">Sign in</a>
<br>
</p>
<div id="TestParent"></div>
<script type="text/javascript">
OLSKClub.register(Object.assign({
parent: window.TestParent,
name: Math.random().toString(),
modal: false,
}, Object.fromEntries(Array.from((new window.URLSearchParams(window.location.search)).entries()).map(e => ['tiers'].includes(e[0]) ? [e[0], JSON.parse(e[1])] : e))));
OLSKClub.show();
</script>
</body>
</html>