-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.html
73 lines (70 loc) · 2.44 KB
/
start.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/98.css" />
<link rel="stylesheet" href="./styles/style.css" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.6.2/axios.min.js"
defer
></script>
<script src="./scripts/start.js" type="module" defer></script>
</head>
<body>
<div id="desktop">
<div id="start-window" class="window">
<div class="title-bar">
<div class="title-bar-text">
Enter Your Windows Account Information
</div>
<div class="title-bar-controls"></div>
</div>
<div id="login-body" class="window-body">
<div id="start-page">
<div class="icon">
<img
src="https://win98icons.alexmeub.com/icons/png/key_win_alt-2.png"
alt=""
/>
</div>
<div class="input-group">
<p>Enter your username and password.</p>
<label for="user-name">User name</label>
<input type="text" id="login-userid" /><br />
<label for="password">Password</label>
<input type="password" id="login-password" /><br />
</div>
<div class="button">
<button id="login-btn">Login</button>
<button id="signup-btn">Sign Up</button>
</div>
</div>
</div>
<div id="signup-body" class="window-body hidden">
<div id="signup-window">
<div id="start-page">
<div class="icon">
<img
src="https://win98icons.alexmeub.com/icons/png/computer-5.png"
alt=""
/>
</div>
<div class="input-group">
<label for="user-name">User name</label>
<input id="signup-userid" type="text" /><br />
<label for="password">Password</label>
<input id="signup-password" type="password" /><br />
<label for="password">Password (Retry)</label>
<input id="signup-password-retry" type="password" /><br />
</div>
<div class="button">
<button id="ok-btn">OK</button>
<button id="back-btn">Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>