-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="data:image/x-icon;base64,AAABAAEAEBAQAAEABAAoAQAAFgAAACgAAAAQAAAAIAAAAAEABAAAAAAAgAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAA////APz8/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgIiIiIgAAAAAAAAAAAAAAIiIiIgAAAAAiIiIiAAAAACAgACIAAAAAICIgIgAAAAAgIAAiAAAAACAgIiIAAAAAICAAIgAAAAAgIiIiAAAAACAQACIAAAAAIBAQIgAAAAAgEAAiAAAAICIiIiIAAAAAAAAAAAAADAAwAAwAMAAMADAADADwAAwA8AAMAPAADADwAAwA8AAMAPAADADwAAwA8AAMAPAADADwAAAA8AAAAPAAAADwAA" rel="icon" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>paperOS</title>
<link rel="Stylesheet" href="styles/style.css"/>
<script src="https://posh.glitch.me/libraries/library.js" defer></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="js/POSH functions.js"></script>
<script src="js/windows.js" defer></script>
<script src="js/apps.js" defer></script>
<script src="js/password.js" defer></script>
<script src="js/rclickmenu.js" defer></script>
</head>
<body><!--where all of the windows are-->
<div id="loginPage">
<center class="loginMenu" id="selectedUser">
<div id="profile"><img src = "images/logos/defaultUserIcon.png" style="width:100%; height:100%;"/></div>
<h1 id="user" style="background-color:#101010;color:white;border-radius: 20px; border-style:solid; width:fit-content; color:white; padding:10px;">username</h1>
<h4 id="text">password</h4>
<input type="password" id="password"/>
</center>
</div>
<div id="rclickmenu">
</div>
<div id="desk">
</div>
<div id="overlay">
<button class="overlayButton" onclick = "openPOSH(); Scroll()"><img src="images/logos/console logo.png">POSH</button>
<button class="overlayButton" onclick="openFolders('p/main'); Scroll()"><img src="images/logos/bookshelf.png">book shelf</button>
<button class="overlayButton"><img src="images/logos/settings gear icon.png">settings</button>
<button class="overlayButton" onclick="openPaperCLP(); Scroll()"><img src="images/logos/paperclip.png">paper Clip</button>
</div>
<!--the bar at the bottom of the screen-->
<div id="ruler">
<center id="open"></center>
<button onclick='Scroll()'><img src="images/logos/paper OS logo.png" class="logo"></button>
<button onclick=""><p id="time"></p></button>
</div>
</body>
</html>