summaryrefslogtreecommitdiff
path: root/www/index.html
blob: 512ac8f15ec816efc108e3892b2d08b90a7fe202 (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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<title>PassMan</title>
<link href="css/main.css" rel="stylesheet" id="stylelink">
<script src="scripts/aes.js"></script>
<script src="scripts/main.js"></script>
</head>
<body>

<div>
Passphrase: <input type="password" id="PassPhrase">
&nbsp;
&nbsp;
<input type="button" id="LoadButton" value="Load" onclick="DoLoad()">
<br>
Group:
<select id="Group">
</select>
&nbsp;&nbsp;
<input type="text" id="NewGroup" maxlength="512">

<hr>

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

</body>
</html>

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