22 lines
610 B
HTML
22 lines
610 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Scorch</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/scorch.css">
|
|
<script>const ws_uri = "{{ url('ws') }}";</script>
|
|
<script type="text/javascript" src="/static/scorch.js"></script>
|
|
<script>window.onload = load;</script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.8">
|
|
<meta name="description" content="A music streaming service.">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Scorch</h1>
|
|
</header>
|
|
<main>
|
|
<button onclick="socket.send('test')">Test</button>
|
|
<audio controls></audio>
|
|
</main>
|
|
</body>
|
|
</html>
|