-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (55 loc) · 2.03 KB
/
index.html
File metadata and controls
79 lines (55 loc) · 2.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Password Generator</title>
<link rel="stylesheet" href="./Develop/assets/styles/style.css" />
</head>
<body>
<div class="wrapper">
<div class="card">
<div class="card-header">
<h2>Random Password Generator</h2>
</div>
<br>
<div>
<div id="char-num">
<label for="characters">How many characters does your password to be? 8 to 128
</label>
</div>
<br>
<div id="number-box">
<input type="number" id="charAmount">
</div>
<h4 class="includes">Your Password Includes? You must select at least one option:</h4>
<input type="checkbox" class="checkbox" id="numbers">
<label for="numbers">Numbers (0-9)</label>
<br><br>
<input type="checkbox" class="checkbox" id="lowCase">
<label for="letters">Lower case letters (a-z)</label>
<br><br>
<input type="checkbox" class="checkbox" id="uppCase">
<label for="LETTERS">UPPER CASE letters (A-Z)</label>
<br><br>
<input type="checkbox" class="checkbox" id="symbols">
<label for="symbols">Symbols ( ! @ # $ % & )</label>
</div>
<br>
<div class="card-body">
<textarea
readonly
id="password"
placeholder="Your Secure Password"
aria-label="Generated Password"
></textarea>
</div>
<div class="card-footer">
<button id="generate" class="btn">Generate Password</button>
</div>
</div>
</div>
<script src="./Develop/assets/scripts/script.js"></script>
</body>
</html>