aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/templates
diff options
context:
space:
mode:
authorSam Tuke <samtuke@owncloud.com>2013-03-29 21:11:29 +0100
committerSam Tuke <samtuke@owncloud.com>2013-03-29 21:11:29 +0100
commit14451bdaf07f88c6ac46092c74b987a360b04547 (patch)
treef6c311d359e121c4005abb392bf192628365966d /apps/files_encryption/templates
parent3cbfacb439396b411f1cd89f1eb232704e6b5d55 (diff)
downloadnextcloud-server-14451bdaf07f88c6ac46092c74b987a360b04547.tar.gz
nextcloud-server-14451bdaf07f88c6ac46092c74b987a360b04547.zip
Development snapshot;
Fixed errors from Hooks::login(); Work on enable/disable recoveryAdmin for lost passwords in settings page (template, ajax, js); Work on fixing sharing files to users (still broken);
Diffstat (limited to 'apps/files_encryption/templates')
-rw-r--r--apps/files_encryption/templates/settings.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/files_encryption/templates/settings.php b/apps/files_encryption/templates/settings.php
index b873d7f5aaf..6499d0c8e80 100644
--- a/apps/files_encryption/templates/settings.php
+++ b/apps/files_encryption/templates/settings.php
@@ -3,6 +3,7 @@
<p>
<strong><?php p($l->t( 'Encryption' )); ?></strong>
+ <br />
<?php p($l->t( "Exclude the following file types from encryption:" )); ?>
<br />
@@ -16,5 +17,23 @@
<?php endforeach;?>
</select>
</p>
+ <p>
+ <?php p($l->t( "Enable encryption passwords recovery account (allow sharing to recovery account):" )); ?>
+ <br />
+ <input
+ type='radio'
+ name='adminEnableRecovery'
+ value='1'
+ <?php echo ( $_["recoveryEnabled"] == 1 ? 'checked="checked"' : '' ); ?> />
+ <?php p($l->t( "Enabled" )); ?>
+ <br />
+
+ <input
+ type='radio'
+ name='adminEnableRecovery'
+ value='0'
+ <?php echo ( $_["recoveryEnabled"] == 0 ? 'checked="checked"' : '' ); ?> />
+ <?php p($l->t( "Disabled" )); ?>
+ </p>
</fieldset>
</form>