-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (66 loc) · 2.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Password Generator</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
</head>
<body>
<div class="container">
<h2 class="main-title">Password Generator</h2>
<div class="wrapper">
<div class="inputbox">
<input
type="text"
name="Password"
/>
<span class="material-symbols-outlined">content_copy</span>
</div>
<div class="pass-indicator"></div>
<div class="pass-length">
<div class="pass-details">
<span class="title">Password Length</span>
<span class="value"></span>
</div>
<input type="range" name="range" max="30" min="1" step="1" value="15"/>
</div>
<div class="pass-settings">
<span class="title"> Password Settings</span>
<ul class="options">
<li class="option">
<input type="checkbox" name="" id="lowercase" checked />
<label for="lowercase">LowerCase(a-z)</label>
</li>
<li class="option">
<input type="checkbox" name="" id="uppercase" />
<label for="uppercase">UpperCase(A-Z)</label>
</li>
<li class="option">
<input type="checkbox" name="" id="number" />
<label for="number">Numbers(0-9)</label>
</li>
<li class="option">
<input type="checkbox" name="" id="symbols" />
<label for="symbols">Symbols(!-$^+)</label>
</li>
<li class="option">
<input type="checkbox" name="" id="duplicate" />
<label for="duplicate">Exclude Duplicate</label>
</li>
<li class="option">
<input type="checkbox" name="" id="spaces" />
<label for="spaces">Include Spaces</label>
</li>
</ul>
</div>
<button class="btn">Generate Password</button>
</div>
</div>
<script src="main.js"></script>
</body>
</html>