-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 942 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
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Clock</title>
<link rel="stylesheet" type="text/css" href="./style/main.css">
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
</head>
<body>
<div id="background"></div>
<div id="dark"></div>
<div id="dark_video"></div>
<div id="time_box"></div>
<div id="alert"></div>
<video id="video"><source src="" type="video/mp4"></video>
<div id="message_wrapper"><div id="message_icon"></div><div id="message_text"></div></div>
<div id="menu"><a class="back" href="admin.html"></a></div>
</body>
<script>
window.$ = window.jQuery = require('./ext_library/jquery-3.2.1.min.js');
// You can also require other files to run in this process
require('./renderer.js')
const storage = require('electron-json-storage');
require('./ext_library/clocks.js')
</script>
</html>