-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
34 lines (34 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>KeePass Chrome</title>
<script src="popup.js"></script>
<script src="key_file_parser.js"></script>
<script src="binary_reader.js"></script>
<script src="group.js"></script>
<script src="entry.js"></script>
<script src="key_file_header.js"></script>
<script src="transform_key_params.js"></script>
<script src="decrypt_params.js"></script>
<script src="decrypt_progress_bar.js"></script>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<h1>KeePass Chrome</h1>
<div id="error"></div>
<div id="key-file-select">
Enter the name of your key file: <input id="key-file-name" value="passwords.kdb">
<button id="key-file-search">Search</button>
<ul id="files"></ul>
</div>
<div id="master-password-enter">
Enter your master password: <input type="password" id="master-password">
<button id="master-password-ok">OK</button>
</div>
<div id="loading">
<img src="loading.gif" alt="loading">
<span id="loading-message"></span>
</div>
<div id="passwords"></div>
</body>
</html>