-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (63 loc) · 2.56 KB
/
index.html
File metadata and controls
70 lines (63 loc) · 2.56 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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="styles.css">
</head>
<body>
<div class="background"></div>
<div class="container">
<h1>Password Generator</h1>
<div class="input-group">
<label for="passwordLength">Password Length: <span id="passwordLengthValue">32</span></label>
<input type="range" id="passwordLength" min="4" max="100" value="32">
</div>
<div class="input-group">
<label for="manualPasswordLength">Manual Password Length: </label>
<input type="number" id="manualPasswordLength" min="4" max="100" value="32">
</div>
<div class="input-group">
<label for="numPasswords">Number of Passwords: <span id="numPasswordsValue">5</span></label>
<input type="range" id="numPasswords" min="1" max="10" value="5">
</div>
<div class="input-group">
<label for="manualNumPasswords">Manual Number of Passwords: </label>
<input type="number" id="manualNumPasswords" min="1" max="10" value="5">
</div>
<div class="checkbox-group">
<div class="checkbox-container">
<input type="checkbox" id="lowercase" checked>
<label for="lowercase">Lowercase</label>
</div>
<div class="checkbox-container">
<input type="checkbox" id="uppercase" checked>
<label for="uppercase">Uppercase</label>
</div>
<div class="checkbox-container">
<input type="checkbox" id="digits" checked>
<label for="digits">Digits</label>
</div>
<div class="checkbox-container">
<input type="checkbox" id="special" checked>
<label for="special">Special</label>
</div>
</div>
<button id="generateBtn">Generate Passwords</button>
<div class="table-container">
<table id="passwordTable">
<thead>
<tr>
<th>No.</th>
<th>Password</th>
<th>Action</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>