-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (109 loc) · 3.84 KB
/
index.html
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
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>jsvault</title>
<link type="text/css" href="jsvault.css" rel="stylesheet" />
<script src="aes.js"></script>
<script src="sha1.js"></script>
<script src="json2.js"></script>
<script src="jquery-1.3.2.js"></script>
<script src="jsvault.js"></script>
</head>
<body>
<form id="vpwform">
<p class="biglogo">jsVault</p>
<p>Username: <input id="vuser" size="30" value="chouser" /></p>
<p>Password: <input id="vpw" type="password" size="30" value="asdfg" /></p>
<p class="vpwconf">
Confirm Password: <input id="vpwconf" type="password" size="30" />
</p>
<p>
<input id="vpwform-submit" type="submit" value="Unlock" />
<p id="msg"></p>
<a id="login" href="#">Login</a>
<a id="newuser" href="#">Create new user</a>
</p>
</form>
<form class="dialog" id="editform">
<div class="submitflash"></div>
<table class="editform">
<tr><td class="label">Title:</td><td><input id="title" /></td></tr>
<tr><td class="label">URL:</td><td><input id="url" /></td></tr>
<tr><td class="label">Username:</td><td><input id="username" /></td></tr>
<tr><td class="label">Password:</td><td><input id="password" /></td></tr>
<tr><td class="label">Tags:</td><td><input id="tags" /></td></tr>
<tr>
<td class="label">Comments:</td>
<td><textarea id="comments" rows="4"></textarea></td>
</tr>
<tbody class="editonly">
<tr><td class="label">Created:</td><td id="created"></td></tr>
<tr><td class="label">Modified:</td><td id="modified"></td></tr>
</tbody>
</table>
<table class="dialogbuttons">
<tr>
<td><input type="submit" value="Okay" /></td>
<td><button class="delacct">Delete</button></td>
<td><button>Cancel</button></td>
</tr>
</table>
</form>
<form class="dialog" id="importform">
<div class="submitflash"></div>
Upload:<br />
(tab-delimited: timestamp, title, username, password)<br />
<textarea id="import"></textarea>
<table class="dialogbuttons">
<tr>
<td><input type="submit" value="Okay" /></td>
<td><button>Cancel</button></td>
</tr>
</table>
</form>
<div id="treasure">
<table class="search">
<tr>
<td class="menugroup">
<table class="menubtn">
<tr>
<td><button class="config" title="Edit config">⌘</button></td>
<td><button class="locknow" title="Lock now">⌧</button></td>
<td><button class="import" title="Upload entries">⇬</button></td>
<td><button class="changepw" title="Change passord">☯</button></td>
<td><button class="newacct" title="New entry">+</button></td>
</tr>
</table>
</td>
<td width="0">Search:</td>
<td class="search"><input id="search" size="50" /></td>
<td class="lockctrl">
Autolock in: <span id="timeleft">TBD</span>
<button class="locknow">Lock now</button>
</td>
</tr>
</table>
<table>
<tbody>
<tr>
<th>title</th>
<th>username</th>
<th>password</th>
<th>
comments
</th>
</tr>
</tbody>
<tbody id="results">
<tr>
<td><a href="#" class="title"></a></td>
<td class="username"></td>
<td class="pw"></td>
<td class="comments"></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>