This repository was archived by the owner on Dec 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
568 lines (507 loc) · 37.2 KB
/
index.html
File metadata and controls
568 lines (507 loc) · 37.2 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
<!DOCTYPE html>
<html lang="en" class="tbod" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenAudioMc | Login</title>
<link href="assets/logo.png" rel="icon">
<link href="assets/logo.png" relw="image">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<!-- Facebook and Twitter integration -->
<meta property="og:title" content="The OpenAudioMc web login">
<meta property="og:image"
content="https://repository-images.githubusercontent.com/71650857/6ec80c00-cc77-11ea-9fcf-dc45a929471d">
<meta property="og:url" content="https://openaudiomc.net/">
<meta property="og:site_name" content="OpenAudioMc - client">
<meta property="og:description" content="The OpenAudioMc web client">
<meta name="twitter:title" content="OpenAudioMc, the all-in-one minecraft voicechat solution">
<meta name="twitter:image"
content="https://repository-images.githubusercontent.com/71650857/6ec80c00-cc77-11ea-9fcf-dc45a929471d">
<meta name="twitter:url" content="https://twitter.com/Mindgamesnl">
<meta name="twitter:card" content="summary">
<!-- Includes -->
<link rel="stylesheet" href="css/2021.css?update=812"/>
<link rel="stylesheet" href="css/tailwind.min.css"/>
<link rel="stylesheet" href="css/daisy.css"/>
<script src="libs/sweetalert2.all.js"></script>
<script defer src='https://static.cloudflareinsights.com/beacon.min.js'
data-cf-beacon='{"token": "44aa80ee6e6d48c8b54452fee61f2541"}'></script>
<script src="libs/socket.io.slim.js"></script>
<script src="libs/color.js"></script>
<script src="libs/js.cookie.js"></script>
<!-- Seperate loading, doesn't depend on files -->
<style>
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
.font-family-karla {
font-family: karla;
}
/* loader */
.loader {
border-color: rgba(0, 0, 0, 0);
border-top-color: #8ed2ff;
-webkit-animation: spinner 1.5s linear infinite;
animation: spinner 1.5s linear infinite;
}
@-webkit-keyframes spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div hs="{{ oam.loader_style }}">
<div class="flex flex-col space-y-4 min-w-screen h-screen animated fadeIn faster fixed left-0 top-0 flex justify-center items-center inset-0 z-50 outline-none focus:outline-none bg-gray-900">
<div hs="{{ oam.loader_status }}" class="flex flex-col p-8 bg-gray-800 shadow-md hover:shodow-lg rounded-2xl">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="loader ease-linear rounded-full border-4 border-t-4 border-gray-200 h-12 w-12"></div>
<div class="flex flex-col ml-3">
<div class="font-medium leading-none text-gray-100">Loading OpenAudioMc...</div>
<p style="display: none;" hs="{{ oam.loading_tagline_style }}"
class="text-sm text-gray-300 leading-none mt-1">
{{ oam.loading_tagline_text }}</p> <small class="text-gray-500" style="display: inline;">Build
812</small>
</div>
</div>
</div>
</div>
<div style="display: none;" hs="{{ oam.login_style }}" class="py-12">
<div class="card flex-shrink-0 w-full max-w-sm shadow-2xl bg-base-100">
<div class="card-body">
<div>
<p class="w-80 text-center text-sm mb-8 text-white tracking-wide cursor-pointer">
Your link seems to be invalid! please use <b>/audio</b> in-game or manually enter your
personal token if you're given one.
</p>
</div>
<div class="space-y-4">
<input type="text" id="login-token" placeholder="Token" class="input input-bordered w-full"/>
<style>
.minecraft-btn {
margin-top: 20px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMQAAAAPCAAAAACe4j/AAAAEuElEQVRIx1WWS5Ibuw5EtddrdRRJJE4iSKrb4c2/AUuy30iK+jEBHCTwAICMCgAKiGhKVQUwKzJHQo4mQGBy7AIvk1E2AQKhFt6bUGD1gILy0DkD4dmzACkGyzCScgFgQmLZr4LpQpC56QB2wgSYE8i1fd6xd1yPHIAKwAs14Undx2LIHK0X6vdFbzTa6CNBLQE8Y5rapn7oAl3KSDKC6cLfL6sLnIVG7ffnyUgvQ6rwLjUZdIVqWz0iEXXCZ+TJsV8feUdoPHDk+a/IeAbq0ldLT59jtHweHwmKS6gFSUYCqKcVsPami1pEnqolkCMBiAS87FXTICp03geYUr8TV8un3KuyC0BfTUzihOCdwjUya1bkT9VWe+AaFOoJzHdtERXRe/eulyEDhC6pjYwr+JQuIDU9/0wQBnJEAkd+9i6IRTJrV7YWnGfwLA6ESphkBoCu88M0YH1CTTOiRUpDdwpGkkP5yL9phhwn+QVxDarAXq513y9bLKgxBGR/CjDyMl4ECd6lO82CaMLbEHGHp1R8ePDERj392ssaCOigNjJ+dXXl6OLUFfVx6dA1BFJLlHpkUHPam095C3QJLIjn6OLIOB3xe0JS85Zd+govg1/z/UhtG3RdVW98yxNp5I0Vtf/U+6y/dJ/yHtSK4q7G9ARscC3/Df/kXTwiT3d6ovjEISLJIVEvBwWeCXlALZTbpy85xqWuf3sNiBBUmYjI+BqN6aNQqDWpipSYf3W1nOV/WALoykjIiCPreSn97UigsjZdPA5s3AmCDIxaVO0Fa1fV/qkaiijPPz/bEeRyLSBDI8K8j37TO8aH7vmOqUUQ1DboYhvqd+FlFGEo+2T75MbLGnjvPeu7Pl521Ap14dcR3h7p75qv4xieqnNDoyCPLt/yKkf5gOUXl+6S3d9Syq/982fz+fhpsm28C5EhJcxsWWQke6KoPMA7tqm7kKcrn6FLhWcoqCNCxDPyQ8wEKR73nIlEX8GpARSJX7/rzeNtWPD/Dl2IwtOYMwV7osGsHYJanzeU7KqIZVCTcrT0IEbyD4d1e1dkBtW2qLhLXK7a1ogDqsjI1DR4PY7nHEqfF9tn8HUJL+eQ/lGOXdwI1++57CqgmDaReM9CZYLAk4D4ymqti4KZI9Htz9OnrcuOhCQEqJfXaxHPAFG/l/ee1GFJPXmPryYUiUGPutnRGXkagmnjHk5RNpm7xxiclm6CjJEQ4+MD4xPmuT9Ef4b3YT3B51a7d4Np76PF0cavuC+SoaH6PlilipEakoJBJETWT3k7Hf+1REPj2fIx95t5ct6u9S5v3KM2fv2Ve29ax9yC98zT2IZot61MHyYtdPF92nguZ29xfcVxSu9Nj5Gl8G3wcVoW8n1Q/f6BHFEAyy5R2aRIdYH8XfV4453vHKcnqarXPD6mdrD0rlVV5xBPF2xuJM5Oo0SdaaqGMjJva7ii6bYv74IzPMo5pGebpu72ghypwTR+WWDuhQOkFijGyAzF3GXh11lEH0hkPINZivpTqLEtVm2j1hVcn/S0//q0es5dbyxOErxKivQ+bHotvzcT3/XztPf20XqG6fJZMePT2X6ts+nlm9LoSYHMiHuJjGXniB7v2fo/5qT4nuxYg6AAAAAASUVORK5CYII=);
font-family: 'MinecraftiaRegular';
border-color: #AAA #565656 #565656 #AAA;
text-shadow: 3px 3px #4C4C4C;
outline: 2px solid #000;
width: 100%;
}
.minecraft-btn:hover {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMQAAAAPCAMAAACMV5AuAAAAVFBMVEVtd7ZteLZverdwerdwe7hxfLhyfbl0frl1f7p2gLt4grx6hLx7hb18hr5+iL+AisCBi8GCjMGEjsKGkMOHkcSIksSKk8WLlMWLlcaMlcaNlsePmMdwBHmVAAAEjElEQVRIx1WW27YbKw5F3Ul2GYTWFAJX+pyd///PfgDsTg0/mSqQ1k08AEAeDkAA7kXyDAeyu2QCWREgCGSvAAbIE/D9U2m8Ji4Drw0CEhP7EMiqBFxmDMBEkHvd5AziDsjoCKQXddUl1nuZgMZrf0PMdj1kgNY+Ay+CJPg8kj1rR3X/GS9kxaoJVFaB6QkxIX5TBX65mpAZGQH3HaoCFMj6/GxuYgDyTsyup1hfxwxVN+F08ANGANyf8jqAPaBpranJvhxV+VV08JGPVScmcL8W4EIuAFWFHMZrUkUfNC3WtIsEaFogMWJRl839MES61w1cjMUsI1fb7GKaoENMOdFNykzXPz2mlwekkXjV4ioO9b15rZWZd4AaCL9cxdSutl8buIOUkd8JTgAy01IKoFoFPhAZr65SbDHgxFIGKi5IpLaKdlafAHxaVWDt2SSZ24LQhEx6aLGyj7RtELDLiA7EiD72ehBiQJo5oPq1nOQMYGAIYoY2AwIrImaA+25P8vZRa0KgqrjnQIaACiom/1G9Sla3GUHVLl/mMl/mxeUPGT0T5seAeeAQtF9WV2F7cX4niJ4DYmBd12oh7jymyRkBuq6M81mQuExHVv313beo9VH3ojfM2zZ8AkTG8X7EeDs6OZw+mrY7E5l/gqQJmZx+YySQAi1/dqQZy0as4FL1d7nrcfd1kjWTX1ZIYESTUCnuPZE7+anrqcxlz3diUX2HowHCf15S3AvxrnhRxeMwtQACGYGKZ7wGjNl7vH73MHdP8s/vSXM0FiRqMnPowfbjRsfe6n7nZ/FGIyfgF6+A/t1XTrcWB3Q42AxkMOfMfuJotRPgqGqFMfB8KO6eN+BEpO8F2eLZ18YO0GUdmEDcXMcNey+XuOfvP5P35guSVxAzWRYUpIoSuZiJrJ/p4zPouw0pwX+6XwpIcyNWEcJ/uf5Svuyx+ncTfhmotEhIBPe/8f961F/jI5aQfSs3WFOwChnZZxPk+HQjZu/WBuDFVwobZnoLISBOdkmNLFPE9iadiImsgTcdTDKA8dj1qBT518Xcg6+6L0Yl/nqCLeH+b46InkCSETTBzEQBRoPEwS9lKVUkpEx426M3oIMHYQLhK/B6jHvgXw6if4+YM4mlJdWDpLw4MhHgjwBZgIt+ZJdAVENOEkiv6mY4yy5nFPjnQmGfGVy0IqP+cmbsWF7Se/rT+5ZBzHPdKfajHW2ouWldPJaoTDJ3GUYTNMV/IyaiPYqQuX0VPXK+ra3Mc8c5Wlkp4D/e5S5htjXU3HnPPJsBXraRM/rSpOMX99zMoVradRl9AMxJdVPIYgf8Rhu0DvLM739A5rmjJ51QcW9SFXjcvR85oYOhSKTsd65pqdKWIV59ZO/7kKTDJLbvYw9XVRIyTXKJdfm4rOjE18yT8IHM/euZa0Z0fLvBSIh7h925QLoXR80WNfnqOHHP7Qk5aj+dTLX4E3hhIkafoGd15/IDT/lPTVSVr233dy6OkJtiLm0yBu+byeE2Yc59pVrDdKyPjxgD4h6r6vcFwpYNHMxVBaE2ApmfyTTjf5jQnWRymG7iAAAAAElFTkSuQmCC);
border-color: #BDC6FF #59639A #59639A #BDC6FF;
}
</style>
<script>
function goTo() {
let name = document.getElementById("login-token").value
if (name.indexOf("#") !== -1) {
name = name.split("#")[1]
}
if (name.length > 3) {
window.location = '#' + name;
window.location.reload();
}
}
</script>
<button onclick="goTo()"
class="minecraft-btn mx-auto text-center text-white truncate p-1 border-2 border-b-4 hover:text-yellow-200">
Login
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-image h-screen w-screen absolute" ts="{{ oam.bg_image_map }}"></div>
<div class="flex h-screen sparkles tbod">
<!--
This client is based on build 812.
(https://github.com/Mindgamesnl/OpenAudioMc/commit/c3b54dbf5859470ecc4dd3be2d4514af0f962d46)
This build was published by the git user: Mindgamesnl
-->
<div class="alert-area" id="alert-area"></div>
<div class="m-auto w-full">
<div class="relative overflow-hidden" x-data="{ openMenu: false }">
<div class="max-w-screen-xl mx-auto">
<div class="main relative z-10 pb-8 bg-white lg:max-w-2xl lg:w-full">
<svg class="hidden lg:block absolute right-0 inset-y-0 h-full w-48 text-white transform translate-x-1/2 text-indigo-600"
fill="currentColor" viewBox="0 0 100 100" preserveAspectRatio="none">
<polygon points="50,0 100,0 50,100 0,100"/>
</svg>
<!-- Disconnected -->
<main class="mx-auto max-w-screen-xl px-4 sm:px-6 lg:px-8" data-type="card" id="kicked-card"
style="display: none;">
<div class="sm:text-center lg:text-left">
<h2 class="text-4xl tracking-tight leading-10 font-extrabold text-gray-900 sm:text-5xl sm:leading-none md:text-6xl">
{{ kicked.title }}
</h2>
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
<raw>{{ kicked.message }}</raw>
</p>
</div>
</main>
<!-- Bad login -->
<main class="mx-auto max-w-screen-xl px-4 sm:px-6 lg:px-8" data-type="card" id="bad-auth-card"
style="display: none;">
<div class="sm:text-center lg:text-left">
<h2 class="text-4xl tracking-tight leading-10 font-extrabold text-gray-900 sm:text-5xl sm:leading-none md:text-6xl">
{{ badlogin.title }}
</h2>
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
<raw>{{ badlogin.content }}</raw>
</p>
</div>
</main>
<!-- Initial connect -->
<main class="mx-auto max-w-screen-xl px-4 sm:px-6 lg:px-8" data-type="card" style="display: none;"
id="welcome-card">
<div class="sm:text-center lg:text-left">
<h2 class="text-4xl tracking-tight leading-10 font-extrabold text-gray-900 sm:text-5xl sm:leading-none md:text-6xl">
{% landing.title %}
</h2>
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
{% landing.clickBelow %}
</p>
<div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start">
<div class="rounded-md shadow">
<a class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base leading-6 font-medium rounded-md text-white bg-green-600 hover:bg-indigo-500 focus:outline-none focus:border-indigo-700 focus:shadow-outline-indigo transition duration-150 ease-in-out md:py-4 md:text-lg md:px-10">
{% landing.connectButton %} </a>
</div>
</div>
</div>
</main>
<!-- Main page -->
<main class="mx-auto max-w-screen-xl px-4 sm:px-6 lg:px-8" style="display: none" data-type="card"
id="main-card">
<div class="sm:text-center lg:text-left">
<h2 class="text-4xl tracking-tight leading-10 font-extrabold text-gray-900 sm:text-5xl sm:leading-none md:text-6xl"
id="welcome-back-box">
{% main.title %}
<br class="xl:hidden"/>
<span class="text-indigo-600">{{ oam.player_name }}</span>
</h2>
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
<raw>{% main.content %}</raw>
</p>
<div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start">
<form class="w-9/12">
<label class="mb-2 uppercase font-bold text-lg text-indigo-600" for="volume-slider">
<placeholder>{% main.volume %}</placeholder>
:
<placeholder>{{ oam.volume }}</placeholder>
</label>
<input id="volume-slider"
class="rounded-lg overflow-hidden appearance-none bg-gray-400 h-3 w-full"
type="range" min="0" max="100" step="1" value="50"/>
</form>
</div>
<div class="pt-10 w-9/12" style="display: none;" id="hue-setup-box">
<button type="submit"
id="hue-bridge-menu-button"
style="display: none;"
class="w-full block tracking-widest uppercase text-center shadow bg-green-600 hover:bg-green-700 focus:shadow-outline focus:outline-none text-white text-xs py-3 px-10 rounded"
>
{% main.openHue %}
</button>
</div>
</div>
</main>
<div class="fixed z-10 inset-0 overflow-y-auto" style="display: none;" id="hue-modal-parent">
<div class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
<div class="fixed inset-0 transition-opacity" aria-hidden="true">
<div class="absolute inset-0 bg-gray-500 opacity-75"></div>
</div>
<span class="hidden sm:inline-block sm:align-middle sm:h-screen"
aria-hidden="true">​</span>
<div class="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full"
role="dialog" aria-modal="true" aria-labelledby="modal-headline">
<div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
<div class="sm:flex sm:items-start">
<div class="mx-auto flex-shrink-0 flex items-center justify-center h-12 w-12 rounded-full bg-red-100 sm:mx-0 sm:h-10 sm:w-10">
<svg class="h-8 w-8 text-pink-500" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"/>
</svg>
</div>
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
<h3 class="text-lg leading-6 font-medium text-gray-900" id="modal-headline">
{% hue.hue %}
</h3>
<div class="mt-2">
<div class="text-sm text-gray-500" id="hue-link-menu">
<p class="small-text" id="hue-welcome-message"></p>
<br/>
<span class="alert-message-button m-15"
id="hue-start-linking-button">{% hue.link %}</span>
</div>
<div class="text-sm text-gray-500" id="hue-linking-menu"
style="display: none;">
<p class="small-text">{{ hue.linkingUpdate }}</p>
</div>
<div class="text-sm text-gray-500" id="hue-settings-menu"
style="display: none;">
<p>
<placeholder>{% hue.connectedTo %}</placeholder>
<span>{{ oam.hue_bridge_name }}</span>.
</p>
<div class="graytext"
style="display: block; text-align: -webkit-center;">
<div class="bulbs">
<div class="bulb">
<h3>{% hue.light1 %}</h3>
<i class="fa fa-3x fa-lightbulb-o"></i>
<div class="light-dropdown">
<select class="blue-select" data-bulb="1"
id='bulb-selection-1'>
</select>
</div>
</div>
<div class="bulb">
<h3>{% hue.light2 %}</h3>
<i class="fa fa-3x fa-lightbulb-o"></i>
<div class="light-dropdown">
<select class="blue-select" data-bulb="2"
id='bulb-selection-2'>
</select>
</div>
</div>
<div class="bulb">
<h3>{% hue.light3 %}</h3>
<i class="fa fa-3x fa-lightbulb-o"></i>
<div class="light-dropdown">
<select class="blue-select" data-bulb="3"
id='bulb-selection-3'>
</select>
</div>
</div>
</div>
<p>{% hue.connected %}</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-gray-50 px-4 py-3 sm:px-6 sm:flex sm:flex-row-reverse">
<button onclick="document.getElementById('hue-modal-parent').style.display = 'none';"
type="button"
class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm">
{% hue.close %}
</button>
</div>
</div>
</div>
</div>
<div class="relative px-4 sm:px-6 lg:px-8 mt-6 md:mt-6 lg:mt-10 sm:mt-12 xl:mt-8">
<nav class="relative flex items-center justify-between sm:h-10 lg:justify-start">
<div class="flex items-center flex-grow flex-shrink-0 lg:flex-grow-0">
<div class="avatar">
<div class="w-10 h-10 mask mask-squircle"><img arc="{{ oam.player_head }}"
alt="Avatar Tailwind CSS Component">
</div>
</div>
</div>
<div class="hidden md:block md:ml-4">
<!-- Modifying anything related to the copyright notice is against TOS, be warned -->
<a href="https://openaudiomc.net/"
class="ml-4 font-medium text-gray-500 hover:text-gray-900 transition duration-150 ease-in-out">©
OpenAudioMc 2016-2021. All Rights Reserved.</a>
</div>
</nav>
</div>
</div>
</div>
<div class="lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2">
<img class="h-56 object-cover sm:h-72 md:h-96 lg:w-full lg:h-full"
tmpsrc="{{ oam.side_image }}"/>
</div>
</div>
<div class="pt-5 w-full flex justify-center transition-transform" id="vc-controls" style="display: none">
<div class="vc-overlay" id="vc-disabled-overlay" style="display: none">
<div class="-m-2 text-center">
<div class="p-2">
<div class="inline-flex items-center bg-white leading-none text-purple-600 rounded-full p-2 shadow text-teal text-sm">
<span class="inline-flex bg-indigo-600 text-white rounded-full h-6 px-3 justify-center items-center">{% vc.notice %}</span>
<span class="inline-flex px-2">{{ oam.vc.disabled }}</span>
</div>
</div>
</div>
</div>
<div class="w-3/5 relative bg-white shadow rounded-md py-5 pl-6 pr-8 sm:pr-6" id="vc-content">
<!-- onboarding -->
<div class="h-full w-full" data-type="voice-card" id="vc-onboarding" style="display: none">
<h2 class="text-2xl tracking-tight leading-10 font-extrabold text-gray-900 sm:text-xl sm:leading-none md:text-3xl">
<placeholder>{% vc.enableThe %}</placeholder>
<span class="text-indigo-600">{% vc.vc %}</span>?
</h2>
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg md:mt-5 md:text-xl lg:mx-0">
{{ vc.onboarding.panel }}
</p>
<br/>
<br/>
<div class="inline-flex">
<button class="hover:bg-green-400 text-white font-bold py-2 px-4 rounded-l bg-green-500"
id="vc-connect-button">
{% vc.enable %}
</button>
<button class="bg-gray-300 hover:bg-gray-400 text-gray-800 font-bold py-2 px-4 rounded-r"
onclick="document.getElementById('vc-controls').style.display = 'none'">
{% vc.dismiss %}
</button>
</div>
</div>
<!-- initial microphone setup -->
<div class="h-full w-full" data-type="voice-card" id="voice-home" style="display: none">
<div class="flex mb-4 w-full">
<div class="w-2/5">
<h2 class="text-2xl tracking-tight leading-10 font-extrabold text-gray-900 sm:text-xl sm:leading-none md:text-3xl">
<span class="text-indigo-600">{% vc.vc %}</span>
<br>
<placeholder>{% vc.settings %}</placeholder>
</h2>
<hr class="mt-2 pb-2"/>
<br/>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="group cursor-pointer relative inline-block text-center">
<svg xmlns="http://www.w3.org/2000/svg"
class="w-12 h-12 rounded-2xl p-1 border border-blue-100 text-blue-400 bg-blue-50 m-1"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
id="vc-mic-mute"
stroke-linecap="round" stroke-linejoin="round">
<path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"/>
<path d="M19 10v2a7 7 0 0 1-14 0v-2"/>
<line x1="12" y1="19" x2="12" y2="23"/>
<line x1="8" y1="23" x2="16" y2="23"/>
</svg>
<div class="opacity-0 w-28 bg-black text-white text-center text-xs rounded-lg py-2 absolute z-10 group-hover:opacity-100 bottom-full -left-1/2 px-3 pointer-events-none">
<placeholder>{% vc.muteUnmute }</placeholder>
<svg class="absolute text-black h-2 w-full left-0 top-full" x="0px" y="0px"
viewBox="0 0 255 255" xml:space="preserve"><polygon class="fill-current" points="0,0 127.5,127.5 255,0"/></svg>
</div>
</div>
<div class="group cursor-pointer relative inline-block text-center">
<svg xmlns="http://www.w3.org/2000/svg"
id="use-surround"
class="w-12 h-12 rounded-2xl p-1 border border-blue-100 text-blue-400 bg-blue-50 m-1"
viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none"
stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M21 3L14.5 21a.55 .55 0 0 1 -1 0L10 14L3 10.5a.55 .55 0 0 1 0 -1L21 3"/>
</svg>
<div class="opacity-0 w-28 bg-black text-white text-center text-xs rounded-lg py-2 absolute z-10 group-hover:opacity-100 bottom-full -left-1/2 px-3 pointer-events-none">
<placeholder>{% vc.spatialStereo }</placeholder>
<svg class="absolute text-black h-2 w-full left-0 top-full" x="0px" y="0px"
viewBox="0 0 255 255" xml:space="preserve"><polygon class="fill-current" points="0,0 127.5,127.5 255,0"/></svg>
</div>
</div>
<div class="group cursor-pointer relative inline-block text-center">
<svg xmlns="http://www.w3.org/2000/svg"
id="visual-speaking-indicator"
class="w-12 h-12 rounded-2xl p-1 border border-blue-100 text-blue-400 bg-blue-50 m-1"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M8 16v-4a4 4 0 0 1 8 0v4"/>
<path d="M3 12h1M12 3v1M20 12h1M5.6 5.6l.7 .7M18.4 5.6l-.7 .7"/>
<rect x="6" y="16" width="12" height="4" rx="1"/>
</svg>
<div class="opacity-0 w-28 bg-black text-white text-center text-xs rounded-lg py-2 absolute z-10 group-hover:opacity-100 bottom-full -left-1/2 px-3 pointer-events-none">
<placeholder>{% vc.speaking }</placeholder>
<svg class="absolute text-black h-2 w-full left-0 top-full" x="0px" y="0px"
viewBox="0 0 255 255" xml:space="preserve"><polygon class="fill-current" points="0,0 127.5,127.5 255,0"/></svg>
</div>
</div>
<div class="flex items-center">
<div class="flex flex-col ml-3">
<label class="mb-2 uppercase font-bold text-base text-indigo-600"
for="mic-sensitive-slider">{% vc.sensitivity %}</label>
<input id="mic-sensitive-slider"
class="rounded-lg overflow-hidden appearance-none bg-gray-400 h-3 w-full"
type="range" min="40" max="100" step="1" value="80"/>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox text-black"
id="enable-auto-adjustments">
<span class="ml-2 text-black">{% vc.auto %}</span>
</label>
</div>
</div>
</div>
</div>
<br/>
<label class="mb-2 uppercase font-bold text-lg text-indigo-600" for="vc-mic-select">{% vc.selectMic %}</label>
<select class="w-3/4 border bg-white rounded px-3 py-2 outline-none text-black" id="vc-mic-select">
<option class="py-1">PreSonus STUDIO 24c</option>
</select>
</div>
<div class="w-3/5">
<h2 class="text-2xl tracking-tight leading-10 font-extrabold text-gray-900 sm:text-xl sm:leading-none md:text-3xl">
<placeholder>{% vc.people %}</placeholder>
<br>
<span class="text-indigo-600"><placeholder>{% vc.voiceRange %}</placeholder> <placeholder>{{ oam.rtc_peer_count }}</placeholder></span>
</h2>
<hr class="mt-2 pb-2"/>
<div class="flex justify-center">
<div class="w-full max-w-lg pt-4" id="vc-call-members">
<div style="text-align: center;" id="empty-call-placeholder">
<h1 class="text-gray-400"><i>{% vc.empty %}</i></h1>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="footer">
<img id="sc-cover" style="display: none;" class="sc-cover"
src="https://i1.sndcdn.com/artworks-NWsyJg2rpTy2imze-4ttQKA-t500x500.jpg"/>
<p id="sc-title" style="display: none;" class="sc-title">{{ oam.soundcloud_title }}</p>
</footer>
</div>
<div class="bg-gray-100 flex flex-col justify-center" style="display:none;" id="lang-change-banner">
<div class="max-w-screen-lg mx-auto fixed bg-white inset-x-5 p-5 bottom-5 rounded-lg drop-shadow-2xl flex gap-4 flex-wrap md:flex-nowrap text-center md:text-left items-center justify-center md:justify-between">
<div class="w-full text-black">{{ ui.lang.detectedAs }}</div>
<div class="flex gap-4 items-center flex-shrink-0">
<button class="text-indigo-600 focus:outline-none hover:underline" id="lang-back-to-en">{{ ui.lang.toEn }}
</button>
<button class="bg-indigo-500 px-5 py-2 text-white rounded-md hover:bg-indigo-700 focus:outline-none"
id="lang-keep">{{ ui.lang.keep }}
</button>
</div>
</div>
</div>
<label style="display: none;" id="open-modal" for="my-modal-2"></label>
<input type="checkbox" id="my-modal-2" class="modal-toggle">
<div class="modal">
<div class="modal-box">
<p>
<raw>{{ modal.content }}</raw>
</p>
<div class="modal-action">
<label for="my-modal-2" id="modal-primary" class="btn btn-primary">{{ modal.primary }}</label>
<label for="my-modal-2" id="modal-secondary" class="btn">{{ modal.secondary }}</label>
</div>
</div>
</div>
</body>
<script src="OpenAudioMc.bundle.js?version=812"
onerror="window.location.href = 'https://help.openaudiomc.net/'"></script>
</html>
</html>