You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
525 B
HTML
30 lines
525 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>udest</title>
|
|
<script src="{{address}}/wss.js"></script>
|
|
<script src="{{address}}/udest.js" defer></script>
|
|
<style>
|
|
|
|
#draw {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
pointer-events: none;
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<canvas id="draw"></canvas>
|
|
|
|
<span id="address">{{address}}</span>
|
|
<button id="join">Join audio</button>
|
|
</body>
|
|
</html>
|