diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2012-08-02 10:39:30 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2012-08-02 10:40:32 +0200 |
commit | 6b058cd3594d80a27097b04507355b219f4726e4 (patch) | |
tree | 9ed88fd5c66e67ba253becbf555e29c4d315270e /apps/files_encryption/templates/settings-personal.php | |
parent | c4d1ad1b7d4507e387a5833622b4831044eb9e09 (diff) | |
download | nextcloud-server-6b058cd3594d80a27097b04507355b219f4726e4.tar.gz nextcloud-server-6b058cd3594d80a27097b04507355b219f4726e4.zip |
allow user to choose encryption mode
Diffstat (limited to 'apps/files_encryption/templates/settings-personal.php')
-rw-r--r-- | apps/files_encryption/templates/settings-personal.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php new file mode 100644 index 00000000000..2b51ab8694d --- /dev/null +++ b/apps/files_encryption/templates/settings-personal.php @@ -0,0 +1,14 @@ +
+<form id="encryption">
+<fieldset class="personalblock">
+
+<strong>Choose encryption mode:</strong>
+
+<p>
+ <input type="radio" name="encryption_mode" value="client" style="width:20px;" <?php if ($_['encryption_mode'] == 'client') echo "checked='checked'"?>/> Client side encryption (most secure but makes it impossible to access your data from the web interface)<br />
+ <input type="radio" name="encryption_mode" value="server" style="width:20px;" <?php if ($_['encryption_mode'] == 'server') echo "checked='checked'"?> /> Server side encryption (allows you to access your files from the web interface and the desktop client)<br />
+ <input type="radio" name="encryption_mode" value="none" style="width:20px;" <?php if ($_['encryption_mode'] == 'none') echo "checked='checked'"?>/> None (no encryption at all)<br/>
+ </p>
+ </fieldset>
+</form>
+
|