-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (57 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/style.css" />
<title>Password Generator</title>
</head>
<body>
<div class="container">
<h1>Password Generator</h1>
<div class="main">
<textarea
id="displayPasswordBox"
class="display-box"
readonly
aria-label="Generated Password"
placeholder="Your Secure Password"
></textarea>
<div id="passwordGeneratorInfo" class="passwordInfo">
<label for="passwordLength">Length Of Password:</label>
<div class="passwordLength-amount-container">
<input
type="range"
min="8"
max="128"
value="8"
id="passwordLengthRange"
/>
<input
class="passwordLength-number-input"
type="number"
min="8"
max="128"
value="8"
id="passwordLengthNumber"
/>
</div>
<label for="includeLowercase">Include Lowercase</label>
<input type="checkbox" id="includeLowercase" />
<label for="includeUppercase">Include Uppercase</label>
<input type="checkbox" id="includeUppercase" />
<label for="includeNumbers">Include Numbers</label>
<input type="checkbox" id="includeNumbers" />
<label for="includeSymbols">Include Symbols</label>
<input type="checkbox" id="includeSymbols" />
</div>
<div class="button-container">
<button id="generateButton">Generate Password</button>
<button id="copyButton">Copy</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>