-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
74 lines (69 loc) · 2.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<head>
<title>vdo.ninja invite link generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8" />
<script src="thirdparty/randomName.js"></script>
<script src="thirdparty/aes.js"></script>
<script src="thirdparty/qrjs2.js"></script>
<script src="main.js?v=3"></script>
<link rel="stylesheet" href="style.css?v=2" />
<link rel="stylesheet"
href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css">
</head>
<body>
<h1>
<a href="https://vdo.ninja">VDO.Ninja</a> invite generator
<small>VDO.Ninja has more functionality than this app supports. See the <a
href="https://docs.vdo.ninja/advanced-settings">Advanced Settings</a> page for
more
information.</small>
</h1>
<div id="panels">
</div>
<div id="links">
<div id="guestLink">
<h4>Guest invite Link <span onclick="guestQRCode('#url')">QR Code</span></h4>
<div class="switchGroup obfuscateSwitch">
<label class="switch">
<input id="guestBetaToggle" type="checkbox" name="beta" onchange="toggleBeta()"></input>
<span class="slider round"></span>
</label>
<span>Beta</span>
<label class="switch">
<input id="guestObfuscateToggle" type="checkbox" name="obfuscate" onchange="toggleObfuscate()"></input>
<span class="slider round"></span>
</label>
<span>Obfuscate</span>
</div>
<a id="url" title="Click to copy" class="url" data-raw="https://vdo.ninja/" href="https://vdo.ninja/"
onclick="popupMessage(event);copyFunction(this)" onmousedown="copyFunction(this)"></a>
</div>
<div id="viewLink">
<h4>Viewer (OBS) Link <span onclick="guestQRCode('#viewUrl')">QR Code</span></h4>
<div class="switchGroup obfuscateSwitch">
<label class="switch">
<input id="viewerBetaToggle" type="checkbox" name="beta" onchange="toggleBeta('viewUrl')"></input>
<span class="slider round"></span>
</label>
<span>Beta</span>
<label class="switch">
<input id="viewerObfuscateToggle" type="checkbox" name="obfuscate" onchange="toggleObfuscate('viewUrl')"></input>
<span class="slider round"></span>
</label>
<span>Obfuscate</span>
</div>
<a id="viewUrl" title="Click to copy" class="url" data-raw="https://vdo.ninja/" href="https://vdo.ninja/"
onclick="popupMessage(event);copyFunction(this)" onmousedown="copyFunction(this)"></a>
</div>
<div id="directorLink">
<h4>Director Link</h4>
<a id="directorUrl" title="Click to copy" class="url" data-raw="https://vdo.ninja/" data-obfuscated="false"
href="https://vdo.ninja/" onclick="popupMessage(event);copyFunction(this)"
onmousedown="copyFunction(this)">https://vdo.ninja/</a>
</div>
</div>
<div id="popup" onclick="this.style.left='-10000px'; this.style.top='-1000px'">
<span id="popupDescription"></span>
</div>
<div id="messagePopup" class="popup-message"></div>
</body>