-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (39 loc) · 1.34 KB
/
index.html
File metadata and controls
47 lines (39 loc) · 1.34 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="clock.css">
<link rel="stylesheet" href="login.css">
<script>
if (typeof lightdm === 'undefined') {
var dummy_lightdm_js = document.createElement('script');
dummy_lightdm_js.src = "dummy_lightdm.js";
document.getElementsByTagName('head')[0].appendChild(dummy_lightdm_js);
}
</script>
<script src="login.js"></script>
<script src="clock.js"></script>
</head><body>
<div id="curtain" class="curtain_unfolded"></div>
<div id="right-container" unselectable="on" onselectstart="return false;" onmousedown="return false;">
<div class="clock_part" id="clock">13:00</div>
<div class="clock_part" id="date">2018. December 24.</div>
<div class="clock_part" id="day">Monday</div>
</div>
<div id="login-container">
<div>
<input class="simple_input hidden" name="username_field" id="username_field" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
</div>
<div>
<input class="simple_input hidden" name="password_field" id="password_field" type="password" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
</div>
</div>
<div id="loading-container">
<img src="loading.png" id="loading">
</div>
<script>
startDateTime();
initLogin();
</script>
</body>
</html>