2019-03-10 16:42:12 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
2019-03-10 21:45:10 +01:00
|
|
|
<head>
|
|
|
|
<meta charset='utf-8'>
|
2019-03-12 06:53:51 +01:00
|
|
|
<title>{{ .Title }}</title>
|
2019-03-10 21:45:10 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/site.css">
|
|
|
|
<script type="application/javascript" src="/static/js/jquery.js"></script>
|
2019-03-12 04:15:42 +01:00
|
|
|
<script type="application/javascript" src="/static/js/wasm_exec.js"></script>
|
2019-03-10 21:45:10 +01:00
|
|
|
<script type="application/javascript" src="/static/js/client.js"></script>
|
2019-03-12 06:53:51 +01:00
|
|
|
|
|
|
|
{{ if .Chat }}
|
|
|
|
<script>
|
|
|
|
window.onload = onloadChat;
|
|
|
|
</script>
|
|
|
|
<!-- If it is only the chat window, the the chat needs to be fullscreen -->
|
|
|
|
{{ if not .Video }}
|
|
|
|
<style>
|
|
|
|
#chatbox {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#phase1 {
|
|
|
|
margin: 0px 10px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Video }}
|
|
|
|
<script type="application/javascript" src="/static/js/flv.min.js"></script>
|
|
|
|
{{ if not .Chat }}
|
|
|
|
<style>
|
|
|
|
#streambox {
|
|
|
|
background: purple;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2019-03-10 21:45:10 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2019-03-10 16:42:12 +01:00
|
|
|
|
2019-03-12 06:53:51 +01:00
|
|
|
{{ if .Video }}
|
2019-03-12 15:33:04 +01:00
|
|
|
<div id="streambox">
|
2019-03-12 06:53:51 +01:00
|
|
|
<video id="videoElement" controls autoplay x5-video-player-type="h5" x5-video-player-fullscreen="true" playsinline webkit-playsinline>
|
|
|
|
Your browser is too old and doesn't support HTML5 video.
|
|
|
|
</video>
|
2019-03-12 17:23:07 +01:00
|
|
|
<script>initPlayer();</script>
|
|
|
|
<button style="float:right" id="reload" onclick="initPlayer();">Reload Player</button>
|
|
|
|
<div id="playingDiv"><span id="playing"></span><br /><a href="" target="_blank" id="playinglink"></a></div>
|
2019-03-12 06:53:51 +01:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Chat }}
|
|
|
|
<div id="chatbox">
|
|
|
|
<div id="phase1">
|
|
|
|
<p style="color:#e5e0e5">Please enter your name to Join the chat</P>
|
|
|
|
<input id="name" maxlength="36">
|
|
|
|
<button id="join" onclick="join();">Join</button>
|
|
|
|
</div>
|
|
|
|
<div id="error"></div>
|
|
|
|
<div id="phase2" style="opacity:0">
|
|
|
|
<div id="messages"></div>
|
|
|
|
<textarea id="msg"></textarea>
|
|
|
|
<br/><button id="send">Send</button>
|
|
|
|
</div>
|
2019-03-10 16:42:12 +01:00
|
|
|
</div>
|
2019-03-12 06:53:51 +01:00
|
|
|
{{ end }}
|
2019-03-10 21:45:10 +01:00
|
|
|
</body>
|
2019-03-10 16:42:12 +01:00
|
|
|
</html>
|