-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
52 lines (45 loc) · 1.41 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PW GENERATE AND COPY</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<header>
<h1>PW GENERATE AND COPY</h1>
</header>
<section>
<label for="passlen">Length (1 - 30):</label>
<input type="number" value="8" min="1" max="30" required id="passlen" class="input length">
<label>Fields</label>
<ul>
<li>
<input type="checkbox" checked id="lower">
<label for="lower">Lower-case letters (e.g. abcdef)</label>
</li>
<li>
<input type="checkbox" checked id="upper">
<label for="upper">Upper-case letters (e.g. ABCDEF)</label>
</li>
<li>
<input type="checkbox" checked id="numbers">
<label for="numbers">Digits (e.g. 0123456789)</label>
</li>
<li>
<input type="checkbox" checked id="symbols">
<label for="symbols">Symbols (e.g _-.:,;!"£$%&/()=?'\*+)</label>
</li>
</ul>
</section>
<footer>
<p id="copied" class="hide tooltip">Got copied!</p>
<textarea readonly id="pasText" class="hide" rows="1" cols="30"></textarea>
<input type="button" id="genepass" class="btn" value="GENERATE PASSWORD">
</footer>
</div>
<script src="script.js"></script>
</body>
</html>