summaryrefslogtreecommitdiff
path: root/www/index.html
blob: 088767dbc7bcfe5ebe9c498e7f6eb78b65f9097b (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!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" maxlength="512" class="fill">
</td>
<td class="headerbutton">
<input type="button" value="Load" onclick="DoLoad()" class="fill">
</td>
</tr>
<tr>
<td class="headertext">Group:</td>
<td class="headerinput">
<select id="Group" onchange="DoSelectGroup()" class="fill">
</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>
<tr>
<td class="headertext">New Passphrase:</td>
<td class="headerinput">
<input type="password" id="NewPassPhrase" maxlength="512" class="fill">
</td>
<td class="headerbutton">
<input id="ChangePassphrase" type="button" value="Change"
 onclick="DoChangePassphrase()" class="fill" disabled>
</td>
</tr>
</table>

<hr>

<table id="DataTable" class="datatable">
<tr class="datatable">
<td class="description">Description</td>
<td class="username">Username</td>
<td class="password">Password</td>
<td class="commands">Commands</td>
<tr class="datatable">
<td class="description">
<select id="DescriptionSelect" class="fill_0_0_lower"
 onchange="DoSelectDescription()">
</select>
<input type="text" maxlength="1024" class="fill_0_0_higher" id="Description">
</td>
<td class="username">
<input type="text" maxlength="64" class="fillabs" id="Username">
</td>
<td class="password">
<input type="password" maxlength="64" class="fillabs" id="Password">
</td>
<td class="commands">
<input type="button" id="Edit" value="Edit" onclick="DoEdit()"
 class="smalltext" disabled>
<input type="button" id="Delete" value="Delete" onclick="DoDelete()"
 class="smalltext" disabled>
<input type="button" id="Add" value="Add" onclick="DoAdd()" class="smalltext">
<input type="button" id="Up" value="Up" onclick="DoUp()" class="smalltext"
 disabled>
<input type="button" id="Down" value="Down" onclick="DoDown()"
 class="smalltext" disabled>
<br>
<input type="button" id="CopyUsername" value="Copy Username"
 onclick="DoCopyUsername()" class="smalltext" disabled>
<input type="button" id="CopyPassword" value="Copy Password"
 onclick="DoCopyPassword()" class="smalltext" disabled>
</td>
</tr>
</table>

</body>
</html>

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