-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (107 loc) · 3.49 KB
/
index.html
File metadata and controls
108 lines (107 loc) · 3.49 KB
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
<!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" />
<link
rel="shortcut icon"
href="src/images/logo-icon.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="src/stylesheets/root.css" />
<link rel="stylesheet" href="src/stylesheets/login.css" />
<link rel="stylesheet" href="src/stylesheets/login-responsive.css" />
<title>Login | Web Odyssey</title>
</head>
<body>
<main>
<div class="wrapper">
<div class="gui-wrapper nborder " id="login-gui">
<div class="gui-header">
<h3 class="gui-htitle">Welcome to Windows</h3>
<div class="controls-wrap">
<p class="nthinborder nbthin-shadow controls">?</p>
<p class="nthinborder nbthin-shadow controls">✕</p>
</div>
</div>
<div class="login-body">
<div>
<img src="src/images/computer-2000.ico" alt="computer icon" />
</div>
<div class="login-main">
<p>Type a username and password to log on to Windows.</p>
<div class="login-inputs">
<section id="login-username">
<label for="username-input"><u>U</u>sername:</label>
<input
type="text"
name="username-input"
id="username-input"
title="Enter the username"
autocomplete="off"
/>
</section>
<section id="login-password">
<label for="password-input"><u>P</u>assword:</label>
<input
type="password"
name="password-input"
id="password-input"
title="Enter the password"
autocomplete="off"
/>
</section>
</div>
</div>
<div class="login-buttons">
<button
type="button"
class="nthinborder nbthin-shadow gui-btn"
id="okBtn"
>
OK
</button>
<button
type="button"
class="nthinborder nbthin-shadow gui-btn"
id="cancelBtn"
>
Cancel
</button>
<button
type="button"
class="nthinborder nbthin-shadow gui-btn"
id="tipBtn"
>
Tip
</button>
</div>
</div>
</div>
<div id="tipsPopUp" class="gui-wrapper nborder">
<div class="gui-header">
<h3 class="gui-htitle">Windows Tips</h3>
<div class="controls-wrap">
<p class="nthinborder controls" id="tipsXControl">✕</p>
</div>
</div>
<div class="tipsPopUp-body flexcolcc">
<p>
Tip: The username is 'Web Odyssey' and the password is
'password123'.
</p>
<button
type="button"
class="nthinborder nbthin-shadow gui-btn"
id="tipOKBtn"
>
OK
</button>
</div>
</div>
</div>
</main>
<script src="src/scripts/login-page.js"></script>
</body>
</html>