-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.38 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<title>PassGen</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<link rel="icon" href="https://cdn4.iconfinder.com/data/icons/flat-design-security-set-one/24/key-512.png">
</head>
<body>
<h1 id="title">PassGen</h1>
<div class="container">
<div id="result"></div>
<div class="options">
<div class="option">
<label for="length">Length</label>
<input type="number" id="length" name="length" value="8" min="4" max="20" />
</div>
<div class="option">
<label for="upper">Upper Case Letters</label>
<input type="checkbox" id="upper" name="upper"/>
</div>
<div class="option">
<label for="number">Numbers</label>
<input type="checkbox" id="number" name="number"/>
</div>
<div class="option">
<label for="symbol">Symbols</label>
<input type="checkbox" id="symbol" name="symbol"/>
</div>
</div>
</div>
<div id="btn-row">
<button id="gen-btn">Generate</button>
<button id="cp-btn">Copy</button>
</div>
</body>
</html>