-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
65 lines (64 loc) · 1.96 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>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div id="domaininfo">
<div id="domain-input" hidden>
<input id="domain" type="text">
</div>
<div id="domain-fixed" hidden>
<span id="domainname"></span>
<button type="button" id="domainedit">Edit</button>
</div>
</div>
<div>
<input id="email" type="text">
</div>
<div>
<input id="salt" type="text" placeholder="Optional salt">
</div>
<div>
<svg id="blotout" viewBox='0 0 255 255'>
<path id='blotpath'></path>
</svg>
</div>
<div>
<input id="memo" type="text">
</div>
<div id="finishers">
<div id="norecord-untouched" hidden>
<button type="button" id="ok-dismiss">OK</button>
</div>
<div id="norecord-edited" hidden>
<button type="button" id="save-new">Save</button>
<button type="button" id="cancel-new">Cancel</button>
</div>
<div id="record-untouched" hidden>
<button type="button" id="ok-record">OK</button>
<button type="button" id="delete-record">Delete</button>
</div>
<div id="record-edited" hidden>
<button type="button" id="save-edit">Save</button>
<button type="button" id="cancel-edit">Revert</button>
</div>
<div id="record-blanked" hidden>
<button type="button" id="save-blank">Delete</button>
<button type="button" id="cancel-blank">Revert</button>
</div>
<div id="record-changed" hidden>
<button type="button" id="save-change">Change</button>
<button type="button" id="cancel-change">Revert</button>
</div>
</div>
<div id="domainprofile" hidden>
</div>
<script src="vendor/rusha.js"></script>
<script src="hashblot.js"></script>
<script src="blotpass.js"></script>
<script src="bloticon.js"></script>
<script src="popup.js"></script>
</body>
</html>