inital commit, basic functionality and streaming with server working

This commit is contained in:
Brandon4466
2025-05-11 17:24:00 -07:00
commit 3e80923494
7 changed files with 973 additions and 0 deletions

24
index.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Movie Streamer</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 20px; }
#container { display: flex; }
#movies-list { width: 30%; overflow-y: auto; }
.movie-item { cursor: pointer; margin-bottom: 10px; display: flex; align-items: center; }
.movie-item img { width: 50px; height: auto; margin-right: 10px; }
#movie-details { flex-grow: 1; padding-left: 20px; }
video { max-width: 100%; margin-top: 10px; }
</style>
</head>
<body>
<h1>Movie Streamer</h1>
<div id="container">
<div id="movies-list"></div>
<div id="movie-details"></div>
</div>
<script src="renderer.js"></script>
</body>
</html>