1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Simple WHIP server (Janus)</title>
<script type="text/javascript" src="javascript/jquery/jquery.min.js" ></script>
<script type="text/javascript" src="javascript/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="javascript/bootbox/bootbox.min.js"></script>
<script type="text/javascript" src="javascript/toastr/toastr.min.js"></script>
<script type="text/javascript" src="index.js" ></script>
<link rel="stylesheet" href="javascript/bootswatch/slate/bootstrap.min.css" type="text/css"/>
<link rel="stylesheet" href="css/demo.css" type="text/css"/>
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.min.css" type="text/css"/>
<link rel="stylesheet" href="javascript/toastr/toastr.min.css" type="text/css"/>
</head>
<body>
<nav class="navbar navbar-default navbar-static-top">
<div class="navbar-header">
<a class="navbar-brand" href=".">Simple WHIP server (Janus)</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href=".">Admin</a></li>
</ul>
<div class="navbar-header navbar-right" style="margin-right: 0px;">
<ul class="nav navbar-nav">
<li><a target="_blank" href="https://janus.conf.meetecho.com" class="navbar-link"><b>Janus</b></a></li>
<li><a target="_blank" href="http://www.meetecho.com" class="navbar-link"><b>Meetecho</b></a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>Endpoints</h1>
</div>
<div class="container">
<div class="row" id="list">
<div class="col-md-12">
<table class="table table-striped">
<tr>
<th width="16%">Endpoint ID</th>
<th width="12%">VideoRoom</th>
<th width="12%">VideoRoom PIN</th>
<th width="12%">Label/Display</th>
<th width="12%">WHIP Token</th>
<th width="12%">Status</th>
<th width="12%"></th>
<th width="12%"></th>
</tr>
<tr id="controls">
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><i class="fa fa-plus-circle fa-fw" title="Create new endpoint" style="cursor: pointer;" id="create"></i></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
|