36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Ben's YouTube Downloader</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="Instructions">
|
|
<h1 id="CurrentDirectory">Currently saving videos to: <code id="saveloc">./</code></h1>
|
|
|
|
Videos to record (seperate different videos by new lines):
|
|
</div>
|
|
|
|
<div id="Input">
|
|
<textarea id="VideosToRecord"></textarea>
|
|
</div>
|
|
|
|
<button id="Download">Download</button>
|
|
|
|
<div id="VideoContainer">
|
|
<div id="VideoBox"></div>
|
|
</div>
|
|
|
|
<div id="Updater">
|
|
<button id="Update">Update</button>
|
|
</div>
|
|
|
|
<script src="index.js"></script>
|
|
<div id="copyright">Copyright Benjamin Kyd© <script type="text/javascript">document.write(new Date().getFullYear())</script></div>
|
|
</body>
|
|
</html>
|