-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.26 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.26 KB
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
28
29
30
31
32
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-eval' 'unsafe-inline'">
<link rel="stylesheet" href="res/index.css">
<script src="res/js/bios.js"></script>
<script src="res/js/boot.js"></script>
<script src="res/js/reset.js"></script>
<script src="res/js/lock.js"></script>
</head>
<body style="background-color: black; width: 100%; height: 100%;">
<div id="biosscreen" class="screen current">
<!-- BIOS Messages -->
</div>
<div id="bootscreen" class="screen">
<img src="res/img/yxBETAos.svg" id="bootoslogo">
<progress id="bootosloader" value="0" max="100"></progress>
<string id="bootmessage"></string>
</div>
<div id="lockscreen" class="screen">
<before>
<timeanddate>
<string id="locktime"></string>
<string id="lockdate"></string>
<string id="lockday"></string>
</timeanddate>
</before>
<after></after>
</div>
</body>
<script src="./renderer.js"></script>
<script src="./index.js"></script>
</html>