-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.17 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>PowerUI Web</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="lockScreen">
<p id="screenText">Click to unlock</p>
<p id="timeLockScreen">12:00am</p>
</div>
<div id="loginPage" class="dialog" style="display: none;">
<div class="dialog-content" id="loginContent">
<p class="dialog-title" id="username">Username</p>
<p class="dialog-subtitle">Welcome back! Log in to continue.</p><br>
<input id="passwordInput" type="password" placeholder="Password"> <br>
<div class="dialog-footer">
<button class="dialog-button yes" onclick="logIn();" id="loginButton">Log in</button>
</div>
</div>
</div>
<div id="startMenu" style="transform: translateY(250vh)">
<ul id="appList">
</ul>
<ul id="tileList">
</ul>
</div>
<div id="taskbar">
<a href="javascript:startMenu()"><img src="PowerUI logo.png" alt="Start button" style="width: 17px;"></a>
<a href="javascript:openCalendar()" id="time" style="float: right;">12:00 am</a>
</div>
</body>
<script src="script.js"></script>
</html>