diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2024-07-17 13:41:06 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2024-07-17 13:41:06 +0000 |
commit | 06f7696c0976c75c13435f84a2101c1203c18b95 (patch) | |
tree | 9ea52c784f4bc5013c8e8af32e82c0a497889b32 /priv/room.html.eex | |
download | mediasync-06f7696c0976c75c13435f84a2101c1203c18b95.tar mediasync-06f7696c0976c75c13435f84a2101c1203c18b95.tar.gz mediasync-06f7696c0976c75c13435f84a2101c1203c18b95.zip |
Initial commit
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 |