This repository has been archived by the owner on Mar 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
47 lines (46 loc) · 1.55 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="static/style.css" />
</head>
<body>
<div id="login-background"></div>
<br>
<br>
<br>
<div id="login-box">
<img id="login-picture">
<div id="login-response"></div>
<br>
<form id="login-form" action="javascript: provide_secret();">
<div id="last"><</div>
<div id="container">
<div id="name">
</div>
</div>
<div id="next">></div>
<input placeholder="Enter your password" type="password" id="login-password" tabindex="2">
<button id="login-button" type="submit" tabindex="3">
Login
</button>
</form>
</div>
</div>
<!-- <div id="wrapper">
<div id="clock-box">
<div id="time-label"></div>
</div>
</div> -->
<div id="login-bar">
<img id="power" src="static/action-shutdown.png" onclick="lightdm.shutdown();">
<img id="power" src="static/action-reboot.png" onclick="lightdm.restart();">
<img id="power" src="static/action-hibernate.png" onclick="lightdm.hibernate();">
<img id="power" src="static/action-sleep.png" onclick="lightdm.suspend();">
</div>
<script src="js/mock.js"></script>
<script src="js/jquery-3.5.1.min.js"></script>
<!-- <script src="js/clock.js"></script> -->
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>