diff options
Diffstat (limited to 'settings/templates/personal.php')
-rw-r--r-- | settings/templates/personal.php | 42 |
1 files changed, 20 insertions, 22 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 07d75587d5e..31ae3a991b6 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -148,29 +148,27 @@ if($_['passwordChangeSupported']) { };?> <?php if($_['enableDecryptAll']): ?> -<form id="decryptAll"> - <fieldset class="personalblock"> - <h2> - <?php p( $l->t( 'Encryption' ) ); ?> - </h2> - <?php p($l->t( "The encryption app is no longer enabled, please decrypt all your files" )); ?> - <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> +<fieldset class="personalblock" id="decryptAll"> + <h2> + <?php p( $l->t( 'Encryption' ) ); ?> + </h2> + <?php p($l->t( "The encryption app is no longer enabled, please decrypt all your files" )); ?> + <p> + <input + type="password" + name="privateKeyPassword" + id="privateKeyPassword" /> + <label for="privateKeyPassword"><?php p($l->t( "Log-in password" )); ?></label> <br /> - </fieldset> -</form> + <button + type="button" + disabled + name="submitDecryptAll"><?php p($l->t( "Decrypt all Files" )); ?> + </button> + <span class="msg"></span> + </p> + <br /> +</fieldset> <?php endif; ?> <fieldset class="personalblock"> |