-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.51 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.51 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
<!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 class="container">
<h1>Password Generator</h1>
<form id="passwordForm">
<label for="length">Password Length (8-20):</label>
<input
type="number"
id="length"
name="length"
min="8"
max="20"
value="12"
/>
<div class="setting">
<label for="uppercase">Include Uppercase Letters</label>
<input type="checkbox" id="uppercase" name="uppercase" />
</div>
<div class="setting">
<label for="lowercase">Include Lowercase Letters</label>
<input type="checkbox" id="lowercase" name="lowercase" checked />
</div>
<div class="setting">
<label for="numbers">Include Numbers</label>
<input type="checkbox" id="numbers" name="numbers" />
</div>
<div class="setting">
<label for="symbols">Include Symbols</label>
<input type="checkbox" id="symbols" name="symbols" />
</div>
<button type="button" onclick="generatePassword()">
Generate Password
</button>
</form>
<div id="result">
<h2>Your Password:</h2>
<p id="passwordDisplay"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>