-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
25 lines (25 loc) · 989 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css">
</head>
<body>
<h1 id="header">Youtube Watcher</h1>
<p id="instructions">Enter a youtube video that you want to watch (the v parameter in a youtube URL). You can also provide the whole URL and we will just embed the page for you. Then hit enter.</p>
<label id='videolabel'>Video ID or URL:</label><input id="videoID">
<button id='resizeBtn' style='display:none;'>
<i class="fa fa-arrows-alt" aria-hidden="true"></i>
</button>
<webview id="foo" src=""></webview>
<p id="hideShowInstruction" style='display:none; color:#fff;'>
To hide/restore do <i>CMD (Ctrl) + shift + E</i>
</p>
<script>
// You can also require other files to run in this process
require('./renderer.js')
require('./funcs.js')
</script>
</body>
</html>