summaryrefslogtreecommitdiff
path: root/www/index.html
blob: 1d8becbb7407eb78d45a1fcf8c1787e43d36501a (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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<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"></td>
<td class="headerbutton">
<input type="button" id="LoadButton" value="Load" onclick="DoLoad()">
</td>
</tr>
<tr>
<td class="headertext">Group:</td>
<td class="headerinput">
<select id="Group" onchange="DoSelectGroup()">
</select>
</td>
<td class="headerbutton"></td>
</tr>
<tr>
<td class="headertext">New Group:</td>
<td class="headerinput"><input type="text" id="NewGroup" maxlength="512"></td>
<td class="headerbutton"></td>
</tr>
</table>

<hr>

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

</body>
</html>

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