blob: ad0c0ed227324fa158ee9eecfee51abaacae6916 (
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
|
<!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">
<input type="button" id="LoadButton" value="Load" onclick="DoLoad">
<hr>
<table id="DataTable"></table>
</body>
</html>
<!-- vim: sw=4 ts=4
-->
|