-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
80 lines (78 loc) · 2.91 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PassGen</title>
<link rel="stylesheet" href="materialize.min.css">
<link rel="stylesheet" href="popupStyle.css" />
</head>
<body>
<div class="row">
<div class="col s12 m12">
<div class="card #13005A">
<div class="card-content white-text">
<span class="card-title center">PassGen</span>
<form action="#">
<div class="input-field col s12">
<div class="input-field col s12">
<!-- <input
type="number"
id="password-length"
min="1"
max="100"
value="12"
/> -->
<input id="password-length" type="number" class="validate white-text" value="12">
<label for="password-length">Password Length:</label>
</div>
</div>
<div class="margintb">
<div class="col s6">
<label>
<input type="checkbox" id="lowercase" checked="true" />
<span>Lower Case (a-z)</span>
</label>
</div>
<div class="col s6">
<label>
<input type="checkbox" id="uppercase" />
<span>Upper Case (A-Z)</span>
</label>
</div>
<div class="col s6">
<label>
<input type="checkbox" id="numberCase" />
<span>Number (0-9)</span>
</label>
</div>
<div class="col s6">
<label>
<input type="checkbox" id="symbol" />
<span>Special Characters</span>
</label>
</div>
</div>
<div class="s6 col m12 margintb">
<input type ="button" id="generate-password" value="Generate Password" tabindex="1" class="btn">
</div>
<div class="s3 offset-s1 col m12 margintb">
<input type ="button" id="generate-history" value="History" class="btn">
</div>
<div class="input-field suffix col s11">
<input placeholder="Password" id="password" type="text" class="validate white-text">
</div>
<div class="center col m12 margintb">
<input type ="button" id="copy-password" value="Copy" class="btn">
</div>
<div id="confirmation-message" class="center">Copied to clipboard!</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="popupScript.js"></script>
<script src="materialize.min.js"></script>
</body>
</html>