-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
159 lines (155 loc) · 5.73 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Windows</title>
<link rel="shortcut icon" href="assets/windows.ico" type="image/x-icon">
<link rel="stylesheet" href="build/css/style.css">
<script src="assets/plain-draggable.min.js"></script>
<script src="main.js"></script>
</head>
<body>
<noscript>
<h2>You need to enable JavaScript to run this app correctly!</h2>
<p>Please enable it for this to work properly.</p>
</noscript>
<div class="desktop">
<div class="window-container">
<div class="window">
<div class="titlebar">
<span class="title">
<span>
<icon-sff>
ﲾ
</icon-sff>
<span>Window test</span>
</span>
</span>
<span class="buttons">
<icon-sfr class="close">

</icon-sfr>
<icon-sfr class="maximize">
ﱬ
</icon-sfr>
<icon-sfr class="minimize">
ﱰ
</icon-sfr>
</span>
</div>
<div class="content">
Everything you see here is a work in progress!
</div>
</div>
<div class="window">
<div class="titlebar">
<span class="title">
<span>
<icon-sfr>

</icon-sfr>
<span>Settings</span>
</span>
</span>
<span class="buttons">
<icon-sfr class="close">

</icon-sfr>
<icon-sfr class="maximize">
ﱬ
</icon-sfr>
<icon-sfr class="minimize">
ﱰ
</icon-sfr>
</span>
</div>
<div class="content">
<h3 style="text-align: center; margin-top: 0px;">Settings</h3>
<div class="card" onclick="windows.bugcheck.make('Unfinished feature')">
<span class="image">
<icon-sff></icon-sff>
</span>
<span class="label">
Switch Theme
</span>
</div>
</div>
</div>
</div>
<div class="start-menu">
<!-- Start Menu -->
<div class="smCol1">
<span>
<icon-sff></icon-sff>
</span>
</div>
<div class="smCol2">
<span style="display: inline-flex;align-content: center;">Recently added</span>
</div>
<div class="smCol3">
<div class="card">
<span class="image">
<icon-sff></icon-sff>
</span>
<span class="label">
Settings
</span>
</div>
<div class="card">
<span class="image">
<icon-sff></icon-sff>
</span>
<span class="label">
Test Window
</span>
</div>
</div>
</div>
<div class="taskbar">
<!-- Taskbar-->
<span class="taskbar-item" onclick="taskbarOpenStartMenu()"><img height="16"
src="assets/windows.svg"></span>
<span class="taskbar-item search">
<span class="input-group">
<input required type="text" placeholder="Search...">
<button>
<icon-sfr>﬚</icon-sfr>
</button>
</span>
</span>
<span class="taskbar-item">
<icon></icon>
</span>
<span class="taskbar-item">
<icon-sff></icon-sff>
</span>
<span class="taskbar-item" style="float: right;" id="taskbarTime">
<icon-sff style="animation: spin 2s infinite;"></icon-sff>
</span>
</div>
</div>
<div class="context-menu" style="visibility: collapse;width: 0px;height:0px;">
<ul>
<li>gaming</li>
<li>gaming</li>
<li>gaming</li>
</ul>
</div>
<div class="bluescreen">
<h1 class="bsod-title">
<icon-sff style="vertical-align: bottom;"></icon-sff> Oh no!
</h1>
<h3>Windows has ran into a problem. We stopped the system to prevent any further damage.<br>We're collecting
some error info, and then we will restart for you.</h3>
<h4 id="bluescreenReason">Bugcheck not loaded yet</h4>
<h5 class="my-0">
Rebooting in 5 seconds... <icon-sff style="animation: spin 1s infinite;"></icon-sff>
</h5>
<div class="qr">
<img src="assets/qr-issues-https.svg" />
</div>
</div>
</body>
</html>