40 lines
878 B
HTML
40 lines
878 B
HTML
<html>
|
|
|
|
<head>
|
|
<title>OpenVidu Sample</title>
|
|
|
|
<meta charset="utf-8">
|
|
<link rel="styleSheet" href="style.css" type="text/css" media="screen">
|
|
|
|
<script src="OpenVidu.js"></script>
|
|
<script src="app.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="join">
|
|
<h1>Join a video session</h1>
|
|
<form onsubmit="return joinSession()" accept-charset="UTF-8">
|
|
<p>
|
|
<label>Participant:</label>
|
|
<input type="text" id="participantId" required>
|
|
</p>
|
|
<p>
|
|
<label>Session:</label>
|
|
<input type="text" id="sessionId" required>
|
|
</p>
|
|
<p>
|
|
<input type="submit" name="commit" value="Join!">
|
|
</p>
|
|
</form>
|
|
</div>
|
|
|
|
<div id="session" style="display: none;">
|
|
<h2 id="session-header"></h2>
|
|
<input type="button" id="buttonLeaveSession" onmouseup="leaveSession()" value="Leave session">
|
|
<div id="publisher"></div>
|
|
<div id="subscriber"></div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|