-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
83 lines (80 loc) · 2.51 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
<!DOCTYPE html>
<html style="background-color: black !important">
<head>
<title>AzuOS</title>
<link rel="stylesheet" href="stylesheets/boot.css">
<link rel="stylesheet" href="stylesheets/login.css">
<script src=pkgs/bootloader.js></script>
</head>
<body>
<div id=welcome class=welcome>
<p id=welcometextobject class=welcometext>Welcome!</p>
</div>
<div id=boot class=bootscreen>
<img width=150 src=assets/logo.png>
<p class='boottext no-glow'>AzuOS</p>
<svg class="spinner" id=loading viewBox="0 0 16 16" width="29" height="29" xmlns="http://www.w3.org/2000/svg">
<style>
path {
animation: spinner 3s ease-in-out infinite;
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
fill: none;
stroke-width: 2;
stroke-miterlimit: 10;
stroke-linecap: round;
transform-origin: 50% 50%;
stroke: #e7e9ec;
}
@keyframes spinner {
0% {
stroke-dasharray: 0, 200;
stroke-dashoffset: 0;
transform: rotate(0deg);
}
100% {
stroke-dasharray: 130, 200;
stroke-dashoffset: -43.9;
transform: rotate(-360deg);
}
}
</style>
<path d="M8 1A1 1 0 008 15 1 1 0 008 1"></path>
</svg>
<div class=loading>
<p class=no-glow>Loading...</p>
</div>
</div>
<div id=login class=login>
<div id=login-status class=login-status>
<img id=login-status-icon width=40>
<p id=login-status-name>status</p>
</div>
<div class=status-bar>
<p>Login to AzuOS</p>
<p class=center-title>AzuOS</p>
<div class=align-right>
<button class=quick-button onclick="quickApps('open')">Quick Apps</button>
<p id="status-time">03:00</p>
</div>
</div>
<div id=quick-apps class=quick-apps>
<p>Work in Progress...</p>
<button onclick="quickApps('close')">Close</button>
</div>
<div class=login-panel>
<p class=login-title>Login</p>
<input type="text" id="name" name="name" placeholder="Username">
<input type="password" id="pwd" name="password" placeholder="Password">
<button onclick='login()'>Login</button>
</div>
<div class=datetime>
<h1 class="time" id="time">00:00</h1>
<p class="date" id="date">January 1, 2000</p>
<!-- <script src="../desktop/scripts/datetime.js"></script> -->
</div>
<div class=top-fade></div>
<div class=bottom-fade></div>
</div>
</body>
</html>