-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (69 loc) · 2.73 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
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Password Generator">
<link rel="shortcut icon" href="img/lock-solid.svg" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Signika+Negative:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/a90981c20e.js" crossorigin="anonymous"></script>
<title>Password Generator</title>
</head>
<body>
<h1>Password <span>Generator</span></h1>
<div class="container">
<section class="result">
<h2 class="password">Random Password</h2>
<i class="fa-regular fa-copy"></i>
</section>
<section class="generator">
<form class="slider">
<div class="info">
<p>Character Length</p>
<label for="slider" class="slider-value">16</label>
</div>
<input type="range" min="8" max="24" value="16" id="slider">
</form>
<form class="requirements">
<label>
<input type="checkbox" id="0" checked>
<p>Include Uppercase Letters</p>
</label>
<label>
<input type="checkbox" id="1" checked>
<p>Include Lowercase Letters</p>
</label>
<label>
<input type="checkbox" id="2">
<p>Include Numbers</p>
</label>
<label>
<input type="checkbox" id="3">
<p>Include Symbols</p>
</label>
</form>
<div class="strength-cheker">
<p>Strength</p>
<div class="cheker">
<p>MEDIUM</p>
<div class="rectangles">
<div class="rectangle easy"></div>
<div class="rectangle medium"></div>
<div class="rectangle hard"></div>
<div class="rectangle very-hard"></div>
</div>
</div>
</div>
<button>
<p>GENERATE</p>
<i class="fa-solid fa-arrow-right"></i>
</button>
</section>
</div>
<script src="index.js"></script>
<script src="bundle.js"></script>
</body>
</html>