-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (78 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password generator app</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main class="container">
<h1>Password Generator</h1>
<div class="password-field">
<span class="password-display">
<span class="password-placeholder">Generate Here</span>
</span>
<div class="copy-wrapper">
<span class="copied-text"></span>
<button class="copy-btn">Copy Password
</button>
<i class="fa fa-clone" aria-hidden="true"></i>
</div>
</div>
<form class="password-settings">
<div class="char-length">
<p>Character Length</p>
<span class="char-count">0</span>
</div>
<input
class="char-length-slider"
type="range"
min="1"
max="10"
value="0"
autocomplete="off"
/>
<div class="char-include-group">
<label>
<input type="checkbox" id="uppercase" value="uppercase"/>
<span class="custom-checkbox"></span>
<p>Include Uppercase Letters</p>
</label>
<label>
<input type="checkbox" id="lowercase" value="lowercase" />
<span class="custom-checkbox"></span>
<p>Include Lowercase Letters</p>
</label>
<label>
<input type="checkbox" id="numbers" value="numbers" />
<span class="custom-checkbox"></span>
<p>Include Numbers</p>
</label>
<label>
<input type="checkbox" id="symbols" value="symbols"/>
<span class="custom-checkbox"></span>
<p>Include Symbols</p>
</label>
</div>
<div class="strength-box">
<span class="strength-label">STRENGTH</span>
<div class="strength-rating">
<span class="strength-rating-text"></span>
<div class="strength-rating-bars">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</div>
</div>
<button class="generate-btn" type="submit">
<span>Generate</span>
</button>
</form>
</main>
</body>
<script src="script.js"></script>
<script src="https://kit.fontawesome.com/63f389e7e4.js" crossorigin="anonymous"></script>
</html>