diff options
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> |