diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-07-27 21:05:41 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-07-27 21:05:41 +0000 |
commit | 374b4419d2ff88bfbb5cfdf2ab97bd9ed885fdaf (patch) | |
tree | 92ae4d4ebbc41e436c8f71300bcca368567b439f /www/index.html | |
parent | ba923b884a2678b5100e6defd07c9b7adb48bf30 (diff) |
Added new passphrase box. Also tried to fix scrolling back to the top on
refresh.
Diffstat (limited to 'www/index.html')
-rw-r--r-- | www/index.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/www/index.html b/www/index.html index 3c585a0..ce53bb4 100644 --- a/www/index.html +++ b/www/index.html @@ -17,12 +17,10 @@ <tr> <td class="headertext">Passphrase:</td> <td class="headerinput"> -<input type="password" id="PassPhrase" class="fill"> +<input type="password" id="PassPhrase" maxlength="512" class="fill"> </td> <td class="headerbutton"> -<div> <input type="button" value="Load" onclick="DoLoad()" class="fill"> -</div> </td> </tr> <tr> @@ -46,6 +44,15 @@ </td> <td class="headerbutton"></td> </tr> +<tr> +<td class="headertext">New Passphrase:</td> +<td class="headerinput"> +<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> +</td> +</tr> </table> <hr> |