-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
46 lines (37 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title> Password Input Light</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<form onsubmit="return false">
<div class="form-item">
<label>Username</label>
<div class="input-wrapper">
<input type="text" id="username" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-lpignore="true"/>
</div>
</div>
<div class="form-item">
<label id="passwordlb">Password</label>
<div class="input-wrapper">
<div>
<input type="password" id="password" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-lpignore="true"/>
<button class="torchlight" id="torchlight">
<div class="torch"></div>
<div class="tfront"></div>
</button>
</div>
<div class="checkwrapper">
<input type="checkbox" onchange="lightclick(this)">Show Password
</div>
<div id="beam"></div>
</div>
</div>
<button id="submit">Sign in</button>
</form>
<script src="./script.js"></script>
</body>
</html>