-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 1.08 KB
/
index.html
File metadata and controls
33 lines (28 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css" />
<title>Password Generator</title>
</head>
<body>
<h3>Password</h3>
<p id="passwordDisplay">-</p>
<div class="container">
<h2>Password Generator <em>- Faisal</em></h2>
<div class="fields">
<label for="lengthInput">Password Length:</label>
<input type="number" id="lengthInput" min="4" max="20" value="8" />
<label for="uppercaseCheckbox">Include Uppercase Letters:</label>
<input type="checkbox" id="uppercaseCheckbox" />
<label for="lowercaseCheckbox">Include Lowercase Letters:</label>
<input type="checkbox" id="lowercaseCheckbox" />
<label for="numbersCheckbox">Include Numbers:</label>
<input type="checkbox" id="numbersCheckbox" />
<label for="specialCharsCheckbox">Include Special Characters:</label>
<input type="checkbox" id="specialCharsCheckbox" />
<button id="generateButton">Generate Password</button>
</div>
</div>
</body>
<script src="script.js"></script>
</html>