2017-06-16 13:23:12 +02:00

47 lines
799 B
Plaintext

<html>
<head>
<title>OpenVidu Sample</title>
<meta charset="utf-8">
<link rel="styleSheet" href="../style.css" type="text/css" media="screen">
</head>
<body>
<form action="/dashboard" method="post">
<p>
<label>User</label> <input name="user" required="true"></input>
</p>
<p>
<label>Pass</label> <input type="password" name="pass" required="true"></input>
</p>
<p>
<button type="submit">Log in</button>
</p>
</form>
<table style="border: 1px solid">
<tr>
<th>User</th>
<th>Pass</th>
</tr>
<tr>
<td>publisher1</td>
<td>pass</td>
</tr>
<tr>
<td>publisher2</td>
<td>pass</td>
</tr>
<tr>
<td>subscriber</td>
<td>pass</td>
</tr>
</table>
<p>PUBLISHER: send and receive media</p>
<p>SUBSCRIBER: receive media</p>
</body>
</html>