diff options
Diffstat (limited to 'priv/room.html.eex')
-rw-r--r-- | priv/room.html.eex | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/priv/room.html.eex b/priv/room.html.eex new file mode 100644 index 0000000..fd86768 --- /dev/null +++ b/priv/room.html.eex @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>room | mediasync</title> + <link rel="stylesheet" href="/static/main.css"> + <link rel="stylesheet" href="/static/video.js/video-js.min.css"> + <style> + body { + margin: 0; + } + </style> +</head> + +<body> + <div id="playerContainer"> + <video-js id="player"> + <source src="<%= Plug.HTML.html_escape(video_url) %>"> + </video-js> + </div> + <script src="/static/video.js/video.min.js"></script> + <script src="/static/room.js"></script> +</body> + +</html>
\ No newline at end of file |