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