blob: 9f04ffa6d24149d7a3d1d1b77f3629749a3cd074 (
plain)
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
|
<html>
<head>
<link rel="stylesheet" type="text/css" href="petrichor.css" />
<script src="petrichor.js" type="text/javascript"></script>
<script type="text/javascript">
start();
</script>
</head>
<body onclick="reset();" onload="load();">
<div id="date-container">
<div id="date"></div>
<div id="time"></div>
</div>
<div id="password_container">
<form action="javascript:provide_secret()">
<span id="password_label"></span>
<input id="password_entry" type="password" />
</form>
</div>
<div id="message_container">
<span id="message_label"></span>
</div>
<select id="session_list"></select>
<img id="shutdown" src="iec5009.svg" onclick="lightdm.shutdown();" />
</body>
</html>
|