diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-07-13 20:44:29 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-07-13 20:44:29 +0000 |
commit | 44131e56b84d636f6a85e64b965d0a04faadc2d0 (patch) | |
tree | 559c5498735ce9b6d2fa8c7e9872f6aa6d37178c /www/index.html | |
parent | aa1c61a18bdc7e686f0c755570178317b1533836 (diff) |
Added global show passwords checkbox.
Diffstat (limited to 'www/index.html')
-rw-r--r-- | www/index.html | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/www/index.html b/www/index.html index 1d8becb..a52d173 100644 --- a/www/index.html +++ b/www/index.html @@ -13,9 +13,13 @@ <table> <tr> <td class="headertext">Passphrase:</td> -<td class="headerinput"><input type="password" id="PassPhrase"></td> +<td class="headerinput"> +<input type="password" id="PassPhrase" class="fill"> +</td> <td class="headerbutton"> -<input type="button" id="LoadButton" value="Load" onclick="DoLoad()"> +<div> +<input type="button" value="Load" onclick="DoLoad()" class="fill"> +</div> </td> </tr> <tr> @@ -25,10 +29,18 @@ </select> </td> <td class="headerbutton"></td> +<tr> +<td class="headertext">Show Passwords:</td> +<td class="headerinput"> +<input type="checkbox" id="ShowPasswords" onclick="DoShowPasswords()"> +</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="headerinput"> +<input type="text" id="NewGroup" maxlength="512" class="fill"> +</td> <td class="headerbutton"></td> </tr> </table> |