mirror of
https://github.com/jech/galene.git
synced 2024-11-12 19:55:59 +01:00
22 lines
537 B
HTML
22 lines
537 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Galène client example</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="author" href="https://www.irif.fr/~jch/"/>
|
|
</head>
|
|
|
|
<body>
|
|
<p id="status">Disconnected</p>
|
|
<p id="error"></p>
|
|
|
|
<div><button id="show" disabled>Show/hide yourself</button></div>
|
|
|
|
<video id="video"></video>
|
|
|
|
<div id="chat"></div>
|
|
|
|
<script src="/protocol.js" defer></script>
|
|
<script src="example.js" defer></script>
|
|
</body>
|
|
</html>
|