-
Notifications
You must be signed in to change notification settings - Fork 1
/
kasiusdesktop.html
85 lines (72 loc) · 3.45 KB
/
kasiusdesktop.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html>
<head>
<title>User 1 - Kasius Next</title>
<!--Scripts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap">
<link rel="stylesheet" href="style.css" id="style">
<link rel="stylesheet" href="scroll.css" id="style">
<link rel="stylesheet" href="apps/jqueryUI.css">
<script type="text/javascript" src="scripts/jsonloader.js"></script>
<script type="text/javascript" src="scripts/jquery-ui.min.js"></script>
<script type="text/javascript" src="scripts/close.js"></script>
<script type="text/javascript" src="scripts/fontawesome.js"></script>
<script type="text/javascript" src="scripts/time.js" defer></script>
<script type="text/javascript" src="scripts/notify.js" defer></script>
<script type="text/javascript" src="scripts/packageinit.js" defer></script>
<script type="text/javascript" src="scripts/Settings.js" defer></script>
</head>
<body id="body">
<div id="welcomescreen" style="display: flex;">
<div>
<h3 style="color: white;">
<span id="activationProgress"></span>
<P>Welcome Back!</P>
</h3>
</div>
</div>
<div id="errorbox">
<div id="errormessage">
<p style="text-align: center;" class="notification">An Error Has Occured!</p>
<h4 id="errormessagetext">messagehere</h4>
<br><br><br><br>
<p class="notification" onclick="hideerror()">OK</p>
<p class="notification"
onclick="shutdown.play(); setTimeout(function () {window.location.replace('index.html')}, 1000);">Log
Out</p>
</div>
</div>
<div class="sidebar2" id="Sidebar" style="display: none;">
<div class="applist" id="applist"
style="width: 50%; height: 100%; display: flex; flex-direction: column; float:left;">
</div>
<div style="width: 50%; height: 100%; display: flex; flex-direction: column; float:right;" class="widgets">
<iframe style="height: 100%; border: none;" src="widgets.html"></iframe>
</div>
</div>
<div class="notifications" id="Sidebar2" style="display: none;">
<p style="text-align: center;" class="notification">Quick Actions</p>
<div class="notification notificationMessage" id="batteryInfo"></div>
<div class="notification notificationMessage" id="internetSettings"></div>
<p style="text-align: center;" class="notification">Notifications Center</p>
<ul id="list" class="list">
</ul>
</div>
<!--Window-->
<section style="height: 100vh; " id="section">
</section>
<!--Footer-->
<footer id="footer">
<button onclick="menu()" class="menubutton" style="width: 35px; padding-top: 0px;" id="menutogglebutton"><img
id="menutogglebuttonimg" src="Icons/kasiuslogo.svg"
style="height: 24px; margin-top: 3px; width: 22.5px;"></img></button>
<nav>
<ul id="footer1">
</ul>
</nav>
<button style="float: right;" onclick="NotificationMenu(); refreshWifiPicker(); getBatteryInfo()" class="menubutton"
style="width: 50px; padding-top: 0px;" id="menutogglebutton"><i style="height: 22.5px; width: 22.5px;"
class="fa-solid fa-bars"></i></button>
</footer>
<script>$(".window").draggable({ handle: ".header", containment: "#body", opacity: 0.75 });</script>
</body>
</html>