-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
121 lines (110 loc) · 4.05 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./assets/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="shortcut icon" href="./assets/img/favicon.png">
<link rel="apple-touch-icon" href="./assets/img/noround.png">
<title>WebDesk</title>
</head>
<script>
var deskid;
var setupd;
</script>
<style>
:root {
--accent: 120, 120, 130 !important;
}
.b2 {
border-radius: 12px;
box-sizing: border-box;
width: 100%;
padding: 6px;
padding-left: 8px;
background-color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 4px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 7.5px 1.5px;
}
.old {
background-color: #e3e3e3;
}
@keyframes bootbg {
0% {
background-color: #000;
}
100% {
background-color: #ccccee;
}
}
body {
animation: bootbg 0.9s;
background-color: #ccccee;
}
#curtain {
position: fixed;
left: 0px; right: 0px; top: 0px; bottom: 0px;
z-index: 99;
background-color: #000;
display: none;
}
</style>
<body>
<div id="setuparea">
<div class="setupblur">
</div>
<div class="setupbox" style="width: 500px; height: 360px;">
<div class="setupbar" id="setupbar1">
<div class="tnav"><button class="b4" onclick="options();">Settings</button></div>
<div class="title"><button class="time b4">--:--</button></div>
</div>
<div id="setup1" class="setb">
<img src="./assets/img/icons/disk.svg" class="setupi"></img>
<p class="h2">Select a version to boot</p>
<p style="margin-bottom: 8px;">Anything grey is no longer supported.</p>
<div class="b2">
<div class="tnav">WebDesk 0.0.9 Beta 4</div>
<div class="title"><button class="b4">Recovery</button><button class="b4"
onclick="op('https://webdesk-again.vercel.app');">Boot</button></div>
</div>
<div class="b2 old">
<div class="tnav">WebDesk 0.0.9 Beta 3</div>
<div class="title"><button class="b4">Recovery</button><button class="b4"
onclick="op('./webdesk.html');">Boot</button></div>
</div>
<div class="b2 old">
<div class="tnav">WebDesk 0.0.9 Beta 2</div>
<div class="title"><button class="b4"
onclick="op('https://webdesk-beta.vercel.app/rec.html');">Recovery</button><button
class="b4" onclick="op('https://webdesk-beta.vercel.app');">Boot</button></div>
</div>
<div class="b2 old">
<div class="tnav">WebDesk 0.0.9 Beta 1</div>
<div class="title"><button class="b4" onclick="op('https://betawebdesk.vercel.app');">Boot</button>
</div>
</div>
</div>
</div>
</div>
<div id="curtain">
</div>
</body>
<script>
function op(src) {
ui.show(document.getElementById('curtain'), 300);
setTimeout(function () { window.location.href = src; }, 270);
setTimeout(function () { ui.hide(document.getElementById('curtain'), 300); }, 700);
}
</script>
</html>
<script src="./assets/lib/jq.js"></script>
<script src="./assets/lib/peer.js"></script>
<script src="./assets/code/core.js"></script>
<script src="./assets/code/wm.js"></script>
<script src="./assets/code/services.js"></script>
<script src="./assets/code/ui.js"></script>
<script src="./assets/code/fs.js"></script>