92 lines
3.3 KiB
HTML
92 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="cache-control" content="no-cache">
|
|
<meta http-equiv="pragma" content="no-cache">
|
|
<meta http-equiv="expires" content="0">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="shortcut icon" href="img/kurento.png" type="image/png" />
|
|
|
|
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="bower_components/demo-console/index.css">
|
|
<link rel="stylesheet" href="bower_components/ekko-lightbox/dist/ekko-lightbox.min.css">
|
|
<link rel="stylesheet" href="css/kurento.css">
|
|
|
|
<script src="bower_components/adapter.js/adapter.js"></script>
|
|
<script src="bower_components/jquery/dist/jquery.min.js"></script>
|
|
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
<script src="bower_components/demo-console/index.js"></script>
|
|
<script src="bower_components/ekko-lightbox/dist/ekko-lightbox.min.js"></script>
|
|
|
|
<script src="bower_components/kurento-utils/js/kurento-utils.js"></script>
|
|
<script src="bower_components/io/dist/socket.io.js"></script>
|
|
|
|
<script src="js/index.js"></script>
|
|
<title>Kurento </title>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
|
|
</header>
|
|
|
|
<div class="container">
|
|
<div class="page-header">
|
|
<div class="row">
|
|
<div class="col-md-5">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<label for="roomName">Room:</label>
|
|
<input class="input" id="roomName" value="default"/>
|
|
<a id="call" href="#" class="btn btn-success">
|
|
<span class="glyphicon glyphicon-play"></span> Presenter</a>
|
|
<a id="viewer" href="#" class="btn btn-primary">
|
|
<span class="glyphicon glyphicon-user"></span> Viewer</a>
|
|
<a id="terminate" href="#" class="btn btn-danger">
|
|
<span class="glyphicon glyphicon-stop"></span> Stop</a>
|
|
</div>
|
|
</div>
|
|
<br/>
|
|
<label class="control-label" for="console">Console</label><br><br>
|
|
<div id="console" class="democonsole">
|
|
<ul></ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-7">
|
|
<div id="videoBig">
|
|
<video id="video" autoplay width="640px" height="480px" poster="img/webrtc.png"></video>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<div class="foot-fixed-bottom">
|
|
<div class="container text-center">
|
|
<hr/>
|
|
<div class="row">© 2014-2015 Kurento</div>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<a href="http://www.urjc.es">
|
|
<img src="img/urjc.gif" alt="Universidad Rey Juan Carlos" height="50px"/>
|
|
</a>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<a href="http://www.kurento.org">
|
|
<img src="img/kurento.png" alt="Kurento" height="50px"/>
|
|
</a>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<a href="http://www.naevatec.com">
|
|
<img src="img/naevatec.png" alt="Naevatec" height="50px"/>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|