-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 1.23 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
<!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>Faisal's Password Generator</h1>
<div class="options">
<label for="length">Password Length:</label>
<input type="number" id="length" min="4" max="50" value="12">
<label for="uppercase">Include Uppercase:</label>
<input type="checkbox" id="uppercase" checked>
<label for="lowercase">Include Lowercase:</label>
<input type="checkbox" id="lowercase" checked>
<label for="numbers">Include Numbers:</label>
<input type="checkbox" id="numbers" checked>
<label for="symbols">Include Symbols:</label>
<input type="checkbox" id="symbols" checked>
</div>
<button class="generate-button" id="generate" onclick="generatePassword()">Generate Password</button>
<button onclick="myFunction()">Copy text</button>
<input type="text" id="password" readonly>
</div>
<script src="script.js"></script>
</body>
</html>