diff options
Diffstat (limited to 'settings/templates/personal.php')
-rw-r--r-- | settings/templates/personal.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index c0f3600a51e..7e926ea42b0 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -111,17 +111,25 @@ if($_['passwordChangeSupported']) { };?> <?php if($_['enableDecryptAll']): ?> -<form id="encryption"> +<form id="decryptAll"> <fieldset class="personalblock"> <legend> <?php p( $l->t( 'Encryption' ) ); ?> </legend> <?php p($l->t( "The encryption app is no longer enabled, decrypt all your file" )); ?> <p> + <input + type="password" + name="privateKeyPassword" + id="privateKeyPassword" /> + <label for="privateKeyPassword"><?php p($l->t( "Log-in password" )); ?></label> + <br /> <button type="button" + disabled name="submitDecryptAll"><?php p($l->t( "Decrypt all Files" )); ?> </button> + <span class="msg"></span> </p> <br /> </fieldset> |