This repository was archived by the owner on Nov 18, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpopup.html
More file actions
39 lines (38 loc) · 1.22 KB
/
popup.html
File metadata and controls
39 lines (38 loc) · 1.22 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>CryptoPass</title>
<meta name="author" content="Dmitry Chestnykh">
<script src="popup.js"></script>
<link type="text/css" rel="stylesheet" href="popup.css">
</head>
<body>
<form id="main-form">
<table>
<tr>
<td class="label">Secret</td>
<td class="input" colspan=2><input type="password" id="secret" value=""></td>
</tr>
<tr>
<td class="label">Username</td>
<td class="input" colspan=2><input type="text" spellcheck="false" id="username" value=""></td>
</tr>
<tr colspan=3>
<td class="label">URL</td>
<td class="input" colspan=2><input type="text" spellcheck="false" id="url" value=""></td>
</tr>
<tr class="length">
<td class="label">Length</td>
<td class="input">
<input type="text" id="length" value="25" size="2"> characters
</td>
<td class="buttons">
<button id="fill-button"><b> Fill </b></button>
<button id="show-button">Show</button>
</td></tr>
</table>
</form>
<div id="result-box"></div>
</body>
</html>