forked from krishmatta1/lightdm-webkit-theme-nord-macos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 2.33 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
<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/script.js"></script>
</head>
<body onload="initialize()" oncontextmenu="return false;">
<div class="cover"></div>
<div class="header">
<div class="headertext"></div> <!-- you can change this to whatever -->
</div>
<div class="time" id="current_time">00:00 AM</div>
</div>
<div class="login_content">
<div class="login_container">
<div class="center">
<div id="user_template" class="user hidden smooth button">
<div>
<img class="user_image" src=""/>
</div>
<span class="user_name"></span>
</div>
</div>
<div id="password_container" class="pass passhidden passsmooth">
<form action="javascript: provide_secret()" class="password_prompt">
<input id="password_entry" type="password" placeholder="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>
</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>