-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Password Generator- Nirdhum</title>
</head>
<body>
<div class="container">
<h2>Password Generator</h2>
<div class="password-container">
<span id="password"></span>
<button class="btn" id="copy">
<i class="fa-solid fa-copy"></i>
</button>
</div>
<div class="settings">
<div class="setting length">
<label>Password length</label>
<input type="number" class="number" id="length" min="8" max="20" value="20">
</div>
<div class="setting">
<label>Include Uppercase letters</label>
<input type="checkbox" class="large-checkbox" id="uppercase" checked>
</div>
<div class="setting">
<label>Include Lowercase letters</label>
<input type="checkbox" class="large-checkbox" id="lowercase" checked>
</div>
<div class="setting">
<label>Include numbers</label>
<input type="checkbox" class="large-checkbox" id="numbers" checked>
</div>
<div class="setting">
<label>Include symbols</label>
<input type="checkbox" class="large-checkbox" id="symbols" checked>
</div>
</div>
<button class="btn btn-large" id="generate">Generate Password</button>
<p>Made by Nirdhum</p>
</div>
<script src="script.js"></script>
</body>
</html>