diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-07-30 14:42:00 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-07-30 14:42:00 +0000 |
commit | 1742a245acd15db2d017b5f443a316fc624d8868 (patch) | |
tree | 6dae847a8ef5c72cd82833f96a77ade553fc23dc /www/index.html | |
parent | 374b4419d2ff88bfbb5cfdf2ab97bd9ed885fdaf (diff) |
Changed to a single record display to remove the hideous problem with the page
jumping.
Diffstat (limited to 'www/index.html')
-rw-r--r-- | www/index.html | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/www/index.html b/www/index.html index ce53bb4..db66991 100644 --- a/www/index.html +++ b/www/index.html @@ -26,7 +26,7 @@ <tr> <td class="headertext">Group:</td> <td class="headerinput"> -<select id="Group" onchange="DoSelectGroup()"> +<select id="Group" onchange="DoSelectGroup()" class="fill"> </select> </td> <td class="headerbutton"></td> @@ -50,14 +50,42 @@ <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> +<input id="ChangePassphrase" type="button" value="Change" + onclick="DoChangePassphrase()" class="fill" disabled> </td> </tr> </table> <hr> -<table id="DataTable" class="datatable"></table> +<table id="DataTable" class="datatable"> +<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"> +<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> |