Files
youtube-downloader/index.html

25 lines
873 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</head>
<body>
<div id="Instructions">
<h1 id="CurrentDirectory">Currently saving videos to: <code>~/Desktop</code></h1>
Videos to record (seperate different videos by new lines):
</div>
<div id="Input">
<textarea id="VideosToRecord"></textarea>
</div>
<!-- <button id="ChangeDirectory" type="button">Video save location</button> -->
<script src="src/Events.js"></script>
<script src="src/YouTubeHelper.js"></script>
</body>
</html>