decentralized-video-chat/public/chat.html
2020-03-24 17:34:57 -04:00

31 lines
896 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Neon Chat</title>
<link rel="shortcut icon" href="landing/images/logo.svg">
<link rel="stylesheet" href="chat.css">
</head>
<body>
<div class="videos">
<video id="remote-video" height="500" autoplay ondblclick={this.requestFullscreen()}></video>
<video id="local-video" height="150" autoplay muted></video>
</div>
<div style="position: absolute; left: 50%; margin-left:-200px; bottom: 0px; z-index: 1">
<div class="buttons">
<div class="center">
<a href="http://example.com" class="round-button">Back</a>
<a href="http://example.com" class="round-button">Fullscreen</a>
<a href="http://example.com" class="round-button">Mute</a>
</div>
</div>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="/chat.js"></script>
</body>
</html>