-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
65 lines (51 loc) · 1.77 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
<!DOCTYPE html>
<html manifest="cache.manifest">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<script src="zepto.min.js"></script>
<script src="selectTextPlugin.js"></script>
<script src="supergenpass.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="popup.css" />
<title>SuperGenPass</title>
</head>
<body>
<header>
<h1>SuperGenPass</h1>
</header>
<section>
<form>
<fieldset id="PasswdField" class="First">
<label id="PasswdLabel" for="Passwd">Master password</label>
<div class="Field">
<input id="Passwd" name="Passwd" type="password" autofocus="autofocus">
</div>
</fieldset>
<fieldset id="DomainField">
<label id="DomainLabel" for="Domain">Domain / URL</label>
<div class="Field">
<input id="Domain" name="Domain" autocorrect="off" autocapitalize="off">
</div>
</fieldset>
<fieldset id="TLDField">
<label id="TLDLabel" for="DisableTLD">Disable subdomain removal</label>
<input id="DisableTLD" name="DisableTLD" type="checkbox" >
</fieldset>
<fieldset id="LenField" class="Last">
<label id="LenLabel" for="Len">Password length</label>
<div class="Field">
<input id="Len" name="Len" type="number" min="4" max="24" value="10">
</div>
</fieldset>
<div id="Generate">
<a href="#" id="GenerateLabel">Generate</a>
</div>
<div id="Result"> </div>
<input type="submit" style="visibility: hidden;" />
</form>
</section>
</body>
</html>