-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.37 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
37
38
<!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>
<h1 class="header">My Password Generator</h1>
<div class="container">
<h1 class="head">Generate a<br> <span class="jumbo">Random Password</span></h1>
<div class="display">
<input type="text" id="password" placeholder="Password" readonly>
<img class="img2" onclick="copytext()" src="copy.png" alt="Copy">
</div>
<div class="controls">
<label for="length">Length: </label>
<input type="number" id="length" value="12" min="4" max="20">
<label>
<input type="checkbox" id="uppercase" checked> Uppercase
</label>
<label>
<input type="checkbox" id="lowercase" checked> Lowercase
</label>
<label>
<input type="checkbox" id="numbers" checked> Numbers
</label>
<label>
<input type="checkbox" id="symbols" checked> Symbols
</label>
</div>
<button class="btn" id="btn"><img class="img" src="generate.png" alt="Generate">Generate Password</button>
</div>
<script src="script.js"></script>
</body>
</html>