Blame view

sources/apps/files_encryption/templates/settings-personal.php 2.48 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
  <form id="encryption" class="section">
  	<h2><?php p( $l->t( 'Encryption' ) ); ?></h2>
03e52840d   Kload   Init
3
  
6d9380f96   Cédric Dupont   Update sources OC...
4
  	<?php if ( $_["initialized"] === \OCA\Encryption\Session::NOT_INITIALIZED ): ?>
03e52840d   Kload   Init
5
  
6d9380f96   Cédric Dupont   Update sources OC...
6
7
8
9
10
11
  	<?php p($l->t("Encryption App is enabled but your keys are not initialized, please log-out and log-in again")); ?>
  
  	<?php elseif ( $_["initialized"] === \OCA\Encryption\Session::INIT_EXECUTED ): ?>
  		<p>
  			<a name="changePKPasswd" />
  			<label for="changePrivateKeyPasswd">
f7d878ff1   kload   [enh] Update to 7...
12
  				<em><?php p( $l->t( "Your private key password no longer match your log-in password." ) ); ?></em>
6d9380f96   Cédric Dupont   Update sources OC...
13
14
  			</label>
  			<br />
f7d878ff1   kload   [enh] Update to 7...
15
  			<?php p( $l->t( "Set your old private key password to your current log-in password:" ) ); ?>
6d9380f96   Cédric Dupont   Update sources OC...
16
17
18
  			<?php if (  $_["recoveryEnabledForUser"] ):
  					p( $l->t( " If you don't remember your old password you can ask your administrator to recover your files." ) );
  			endif; ?>
6d9380f96   Cédric Dupont   Update sources OC...
19
20
21
22
23
24
25
26
27
28
29
30
  			<br />
  			<input
  				type="password"
  				name="changePrivateKeyPassword"
  				id="oldPrivateKeyPassword" />
  			<label for="oldPrivateKeyPassword"><?php p($l->t( "Old log-in password" )); ?></label>
  			<br />
  			<input
  				type="password"
  				name="changePrivateKeyPassword"
  				id="newPrivateKeyPassword" />
  			<label for="newRecoveryPassword"><?php p($l->t( "Current log-in password" )); ?></label>
31b7f2792   Kload   Upgrade to ownclo...
31
  			<br />
6d9380f96   Cédric Dupont   Update sources OC...
32
33
34
35
36
37
38
  			<button
  				type="button"
  				name="submitChangePrivateKeyPassword"
  				disabled><?php p($l->t( "Update Private Key Password" )); ?>
  			</button>
  			<span class="msg"></span>
  		</p>
31b7f2792   Kload   Upgrade to ownclo...
39
  
6d9380f96   Cédric Dupont   Update sources OC...
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  	<?php elseif ( $_["recoveryEnabled"] && $_["privateKeySet"] &&  $_["initialized"] === \OCA\Encryption\Session::INIT_SUCCESSFUL ): ?>
  		<br />
  		<p>
  			<label for="userEnableRecovery"><?php p( $l->t( "Enable password recovery:" ) ); ?></label>
  			<br />
  			<em><?php p( $l->t( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" ) ); ?></em>
  			<br />
  			<input
  			type='radio'
  			name='userEnableRecovery'
  			value='1'
  			<?php echo ( $_["recoveryEnabledForUser"] ? 'checked="checked"' : '' ); ?> />
  			<?php p( $l->t( "Enabled" ) ); ?>
  			<br />
03e52840d   Kload   Init
54
  
6d9380f96   Cédric Dupont   Update sources OC...
55
56
57
58
59
60
61
62
63
64
  			<input
  			type='radio'
  			name='userEnableRecovery'
  			value='0'
  			<?php echo ( $_["recoveryEnabledForUser"] === false ? 'checked="checked"' : '' ); ?> />
  			<?php p( $l->t( "Disabled" ) ); ?>
  			<div id="recoveryEnabledSuccess"><?php p( $l->t( 'File recovery settings updated' ) ); ?></div>
  			<div id="recoveryEnabledError"><?php p( $l->t( 'Could not update file recovery' ) ); ?></div>
  		</p>
  	<?php endif; ?>
03e52840d   Kload   Init
65
  </form>