This repository was archived by the owner on Jun 19, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
60 lines (60 loc) · 3.59 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<html>
<head>
<link rel="stylesheet" type="text/css" href="resources/css/style.css" />
<!-- mock.js is only required for local testing -->
<script type="text/javascript" src="resources/js/mock.js"></script>
<script type="text/javascript" src="resources/js/greeter.js" defer></script>
</head>
<body onload="initialize()" oncontextmenu="return false;">
<div id="background"></div>
<div id="time"></div>
<div class="login_content">
<div class="login_container">
<div class="center">
<div id="user_template" class="user hidden smooth button">
<img class="user_image" src="" />
<span class="user_name"></span>
</div>
</div>
<div id="row_container">
<div id="back" class="hidden smooth">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" class="login_container_button"><path d="m24.105 0.017578a24 24 0 0 0-24 24 24 24 0 0 0 24 24 24 24 0 0 0 24-24 24 24 0 0 0-24-24zm5.0547 11.982c0.43015 0 0.85941 0.16396 1.1875 0.49219 0.65619 0.65619 0.65619 1.7205 0 2.377l-9.1309 9.1309 9.1328 9.1309c0.65619 0.65613 0.65619 1.7208 0 2.377-0.65613 0.65677-1.7205 0.65677-2.377 0l-10.32-10.32c-0.32804-0.32809-0.49219-0.75732-0.49219-1.1875 0-0.42997 0.16409-0.85925 0.49219-1.1875l10.318-10.32c0.32823-0.32823 0.7593-0.49219 1.1895-0.49219z"/></svg>
</div>
<div id="password_container" class="center pass passhidden passsmooth">
<form action="javascript: provide_secret()" class="password_prompt">
<input id="password_entry" type="password" placeholder="\tEnter Password" />
<div id="session_container" class="hidden">
<div id="session_template">
<label>
<input type="radio" name="session">
<span class="session_label"></a>
</label>
</div>
</div>
</form>
</div>
<div id="enter" class="hidden smooth">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 48 48" class="login_container_button"><path d="m24 0a24 24 0 0 0-24 24 24 24 0 0 0 24 24 24 24 0 0 0 24-24 24 24 0 0 0-24-24zm3.7422 15.742c0.28561 0 0.57119 0.1083 0.78906 0.32617l7.1426 7.1426c0.43584 0.43584 0.43584 1.1423 0 1.5781l-7.1426 7.1426c-0.21792 0.21774-0.50347 0.32617-0.78906 0.32617-0.28559 1e-6 -0.57123-0.10843-0.78906-0.32617-0.43584-0.43584-0.43584-1.1423 0-1.5781l5.2363-5.2383h-19.074c-0.61626 0-1.1152-0.49906-1.1152-1.1152 0-0.61626 0.49897-1.1152 1.1152-1.1152h19.074l-5.2363-5.2383c-0.43584-0.43584-0.43584-1.1423 0-1.5781 0.21788-0.21788 0.50345-0.32617 0.78906-0.32617z"/></svg>
</div>
</div>
</div>
</div>
<div id="message" class="smooth">
<div id="message_content"></div>
</div>
<div class="footer">
<div id="action_suspend" class="action button">
<div class="action_image_wrapper" onclick="lightdm.suspend();"><img class="action_image" src="resources/img/sleep.svg" /></div>
<span class="action_label">Suspend</span>
</div>
<div id="action_restart" class="action button">
<div class="action_image_wrapper" onclick="lightdm.restart();"><img class="action_image" src="resources/img/restart.svg" /></div>
<span class="action_label">Restart</span>
</div>
<div id="action_shutdown" class="action button">
<div class="action_image_wrapper" onclick="lightdm.shutdown();"><img class="action_image" src="resources/img/shutdown.svg" /></div>
<span class="action_label">Shut Down</span>
</div>
</div>
</body>
</html>