summaryrefslogtreecommitdiff
path: root/www/index.html
blob: 3c585a0a6c8cda29cb94a40cf468768cca2db241 (plain)
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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta charset="utf-8">
<title>PassMan</title>
<link rel="shortcut icon" href="favicon.png" type="image/png"/>
<link href="css/main.css" rel="stylesheet" id="stylelink">
<script src="scripts/aes.js"></script>
<script src="scripts/main.js"></script>
</head>
<body>

<table>
<tr>
<td class="headertext">Passphrase:</td>
<td class="headerinput">
<input type="password" id="PassPhrase" class="fill">
</td>
<td class="headerbutton">
<div>
<input type="button" value="Load" onclick="DoLoad()" class="fill">
</div>
</td>
</tr>
<tr>
<td class="headertext">Group:</td>
<td class="headerinput">
<select id="Group" onchange="DoSelectGroup()">
</select>
</td>
<td class="headerbutton"></td>
<tr>
<td class="headertext">Show Passwords:</td>
<td class="headerinput">
<input type="checkbox" id="ShowPasswords" onclick="DoShowPasswords()">
</td>
<td class="headerbutton"></td>
</tr>
<tr>
<td class="headertext">New Group:</td>
<td class="headerinput">
<input type="text" id="NewGroup" maxlength="512" class="fill">
</td>
<td class="headerbutton"></td>
</tr>
</table>

<hr>

<table id="DataTable" class="datatable"></table>

</body>
</html>

<!-- vim: sw=4 ts=4
-->