-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.62 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<title>Show Password Blinking Eyes</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<form method="get" action="javascript: void(0);" id="login-form" class="login-form" autocomplete="off" role="main">
<h1 class="a11y-hidden">Login Form</h1>
<div>
<label class="label-email">
<input type="email" class="text" name="email" placeholder="Email" tabindex="1" required />
<span class="required">Email</span>
</label>
</div>
<input type="checkbox" name="show-password" class="show-password a11y-hidden" id="show-password" tabindex="3" />
<label class="label-show-password" for="show-password">
<span>Show Password</span>
</label>
<div>
<label class="label-password">
<input type="password" class="text" name="password" placeholder="Password" tabindex="2" required />
<span class="required">Password</span>
</label>
</div>
<input type="submit" value="Log In" />
<div class="email">
<a href="#">Forgot password?</a>
</div>
<figure aria-hidden="true">
<div class="person-body"></div>
<div class="neck skin"></div>
<div class="head skin">
<div class="eyes"></div>
<div class="mouth"></div>
</div>
<div class="hair"></div>
<div class="ears"></div>
<div class="shirt-1"></div>
<div class="shirt-2"></div>
</figure>
</form>
</body>
</html>