-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (60 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
60 lines (60 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="Image/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Password Generator</title>
<link rel="stylesheet" href="PasswordGenerator.css" />
</head>
<body>
<header>Password Generator</header>
<div class="container">
<div class="child">
<div class="flexing">
<input
placeholder="Password will appear here "
id="password"
class="output"
/>
<button id="copy">copy</button>
</div>
<div class="flexing">
<label for="length">Length of the Password </label>
<input type="number" id="length" min="4" max="30" />
</div>
<div class="flexing">
<label for="lowercase">Contains Lowercase</label>
<input
type="checkbox"
id="lowercase"
name="lowercase"
value="lowercase"
/>
</div>
<div class="flexing">
<label for="uppercase">Contains Uppercase</label>
<input
type="checkbox"
id="uppercase"
name="uppercase"
value="uppercase"
/>
</div>
<div class="flexing">
<label for="numbers">Contains Numbers</label>
<input type="checkbox" id="numbers" name="numbers" value="numbers" />
</div>
<div class="flexing">
<label for="special">Contains Special Character</label>
<input type="checkbox" id="special" name="special" value="special" />
</div>
<button id="generate">GENERATE PASSWORD</button>
</div>
<div class="message-container">
<div id="message"></div>
</div>
</div>
<script src="PasswordGenerator.js"></script>
</body>
</html>