2012-02-23 01:20:46 +04:00
|
|
|
<form id="calendar">
|
|
|
|
<fieldset class="personalblock">
|
2012-07-31 18:37:37 +04:00
|
|
|
|
|
|
|
<strong>Choose encryption mode:</strong>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<input type="radio" name="encryption_mode" value="client" style="width:20px;" /> 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;" /> 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; checked="checked" /> None (no encryption at all)<br/>
|
|
|
|
</p>
|
|
|
|
<p>
|
2012-02-23 01:20:46 +04:00
|
|
|
<strong><?php echo $l->t('Encryption'); ?></strong>
|
|
|
|
<?php echo $l->t("Exclude the following file types from encryption"); ?>
|
|
|
|
<select id='encryption_blacklist' title="<?php echo $l->t('None')?>" multiple="multiple">
|
|
|
|
<?php foreach($_["blacklist"] as $type): ?>
|
|
|
|
<option selected="selected" value="<?php echo $type;?>"><?php echo $type;?></option>
|
|
|
|
<?php endforeach;?>
|
|
|
|
</select>
|
2012-07-31 18:37:37 +04:00
|
|
|
</p>
|
2012-02-23 01:20:46 +04:00
|
|
|
</fieldset>
|
|
|
|
</form>
|