20 lines
564 B
HTML
20 lines
564 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>MTP Web Client</title>
|
|
<style>
|
|
body { font-family: monospace; background: #111; color: #0f0; padding: 2rem; }
|
|
#status { white-space: pre-wrap; }
|
|
.state { color: #ff0; }
|
|
.received { color: #0ff; }
|
|
.error { color: #f00; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>MTP WebTransport Client</h1>
|
|
<div id="status">Initializing...</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|