diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-06-27 14:17:13 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-06-27 14:17:13 +0000 |
commit | e19daf5e4efe081a721ba627df5cf5499930d497 (patch) | |
tree | 591e02023f139e8f9b9e012aee3f2823a707937c /www/index.html | |
parent | c4c55c23c564160a7150062ffb73041f21de70e9 (diff) |
Initial attempts at adding the commands.
Diffstat (limited to 'www/index.html')
-rw-r--r-- | www/index.html | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/www/index.html b/www/index.html index 4a1b421..1d8becb 100644 --- a/www/index.html +++ b/www/index.html @@ -3,28 +3,39 @@ <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> -<div> -Passphrase: <input type="password" id="PassPhrase"> - - +<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()"> -<br> -Group: +</td> +</tr> +<tr> +<td class="headertext">Group:</td> +<td class="headerinput"> <select id="Group" onchange="DoSelectGroup()"> </select> - -<input type="text" id="NewGroup" maxlength="512"> -</div> +</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"></table> +<table id="DataTable" class="datatable"></table> </body> </html> |