2012-08-02 12:39:30 +04:00
|
|
|
<form id="encryption">
|
2012-02-23 01:20:46 +04:00
|
|
|
<fieldset class="personalblock">
|
2012-07-31 18:37:37 +04:00
|
|
|
|
2013-01-22 21:15:03 +04:00
|
|
|
<p>
|
2013-02-28 00:20:37 +04:00
|
|
|
<strong><?php p($l->t( 'Encryption' )); ?></strong>
|
2013-03-30 00:11:29 +04:00
|
|
|
<br />
|
2013-01-22 21:15:03 +04:00
|
|
|
</p>
|
2013-03-30 00:11:29 +04:00
|
|
|
<p>
|
2013-05-13 19:26:21 +04:00
|
|
|
<?php p($l->t( "Enable encryption passwords recovery key (allow sharing to recovery key):" )); ?>
|
2013-03-30 00:11:29 +04:00
|
|
|
<br />
|
2013-05-04 18:14:38 +04:00
|
|
|
<br />
|
|
|
|
<?php if ( empty( $_['recoveryAdminUid'] ) ): ?>
|
|
|
|
<input type="password" name="recoveryPassword" id="recoveryPassword" />
|
|
|
|
<label for="recoveryPassword">Recovery account password</label>
|
|
|
|
<br />
|
|
|
|
<?php endif; ?>
|
2013-03-30 00:11:29 +04:00
|
|
|
<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>
|
2012-02-23 01:20:46 +04:00
|
|
|
</fieldset>
|
|
|
|
</form>
|