-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 1000 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (24 loc) · 1000 Bytes
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
26
<!--index.html-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'unsafe-inline' 'self'">
<title>Hello World!</title>
<link rel="stylesheet" href="./common.css">
</head>
<body>
<h1>Hello World!</h1>
We are using Node.js <span id="node-version"></span>,
Chromium <span id="chrome-version"></span>,
and Electron <span id="electron-version"></span>.
<hr>
<div><span id="duration_val">0</span> secs</div>
<div>Status: <span id="state_val">Idle</span></div>
<button id="start_button">Start Recording</button><button id="stop_button" disabled>Stop Recording</button>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>