-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (56 loc) · 2.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
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrapper">
<h1>Password Generator</h1>
<div class="display-container">
<input type="text" readonly placeholder="Password" data-password-display class="display">
<button data-copy class="copyBtn">
<span data-copy-msg class="message"></span>
<img src="./Images/copy.svg" alt="copy" width="23" height="23">
</button>
</div>
<div class="input-container">
<!-- Password length section -->
<div class="length-container">
<p>Password Length</p>
<p data-length-number>0</p>
</div>
<!-- Slider -->
<input type="range" min="1" max="20" class="slider" step="1" data-length-slider>
<!-- Checkboxes -->
<div class="check">
<input type="checkbox" id="uppercase" checked>
<label for="uppercase">Include Uppercase Letters</label>
</div>
<div class="check">
<input type="checkbox" id="lowercase">
<label for="lowercase">Include Lowercase Letters</label>
</div>
<div class="check">
<input type="checkbox" id="numbers">
<label for="numbers">Include Numbers</label>
</div>
<div class="check">
<input type="checkbox" id="symbols">
<label for="symbols">Include Symbols</label>
</div>
<!-- Strength section -->
<div class="strength-container">
<p>Strength</p>
<div data-indicator></div>
</div>
<!-- Generate button -->
<button class="generate-button">Generate Password</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>
<!-- Time : 01:28:00 -->