snappymail/rainloop/v/0.0.0/app/templates/Views/Admin/AdminSettingsSecurity.html

120 lines
4 KiB
HTML
Raw Normal View History

<div class="adminSecurity g-ui-user-select-none">
<div class="form-horizontal">
2015-03-28 06:06:56 +08:00
<div class="legend" data-i18n="TAB_SECURITY/LEGEND_SECURITY"></div>
<div class="control-group">
2014-01-29 00:09:41 +08:00
<div class="controls">
2014-10-29 06:05:50 +08:00
<div data-bind="component: {
name: 'Checkbox',
params: {
value: capaTwoFactorAuth,
label: 'TAB_SECURITY/LABEL_ALLOW_TWO_STEP',
inline: true
}
2014-10-29 06:05:50 +08:00
}"></div>
&nbsp;&nbsp;&nbsp;&nbsp;
2014-10-29 06:05:50 +08:00
<div data-bind="component: {
name: 'Checkbox',
params: {
value: capaTwoFactorAuthForce,
enable: capaTwoFactorAuth,
label: 'TAB_SECURITY/LABEL_FORCE_TWO_STEP',
inline: true
}
2014-10-29 06:05:50 +08:00
}"></div>
<br />
<br />
2014-10-29 06:05:50 +08:00
<div data-bind="component: {
name: 'Checkbox',
params: {
value: useLocalProxyForExternalImages,
label: 'TAB_SECURITY/LABEL_USE_IMAGE_PROXY'
}
}"></div>
<div data-bind="component: {
name: 'Checkbox',
params: {
value: capaOpenPGP,
label: 'TAB_SECURITY/LABEL_ALLOW_OPEN_PGP',
inline: true
}
2014-10-29 06:05:50 +08:00
}"></div>
&nbsp;&nbsp;
2015-03-28 06:06:56 +08:00
<span style="color:red">(<span data-i18n="HINTS/BETA"></span>)</span>
</div>
</div>
<div class="control-group">
<div class="controls">
2015-03-28 06:06:56 +08:00
<a href="#" target="_blank" class="g-ui-link" data-bind="link: phpInfoLink()"
data-i18n="TAB_SECURITY/LABEL_SHOW_PHP_INFO"></a>
</div>
</div>
</div>
2015-03-28 06:06:56 +08:00
<br />
<div class="form-horizontal">
2015-03-28 06:06:56 +08:00
<div class="legend" data-i18n="TAB_SECURITY/LEGEND_ADMIN_PANEL_ACCESS_CREDENTIALS"></div>
<div class="control-group">
2015-03-28 06:06:56 +08:00
<label class="control-label" data-i18n="TAB_SECURITY/LABEL_CURRENT_PASSWORD"></label>
<div class="controls">
2014-04-29 23:31:49 +08:00
<input type="password" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
2014-08-19 18:33:59 +08:00
data-bind="textInput: adminPassword" />
</div>
</div>
<br />
<div class="control-group" data-bind="css: {'error': adminLoginError}">
2015-03-28 06:06:56 +08:00
<label class="control-label" data-i18n="TAB_SECURITY/LABEL_NEW_LOGIN"></label>
<div class="controls">
<input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
data-bind="textInput: adminLogin" />
</div>
</div>
2014-04-29 23:31:49 +08:00
<div class="control-group" data-bind="css: {'error': adminPasswordNewError}">
2015-03-28 06:06:56 +08:00
<label class="control-label" data-i18n="TAB_SECURITY/LABEL_NEW_PASSWORD"></label>
<div class="controls">
2014-04-29 23:31:49 +08:00
<input type="password" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
2014-08-19 18:33:59 +08:00
data-bind="textInput: adminPasswordNew" />
2014-04-29 23:31:49 +08:00
</div>
</div>
<div class="control-group" data-bind="css: {'error': adminPasswordNewError}">
2015-03-28 06:06:56 +08:00
<label class="control-label" data-i18n="TAB_SECURITY/LABEL_REPEAT_PASSWORD"></label>
2014-04-29 23:31:49 +08:00
<div class="controls">
<input type="password" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
2014-08-19 18:33:59 +08:00
data-bind="textInput: adminPasswordNew2" />
</div>
</div>
<div class="control-group">
<div class="controls">
<a class="btn" data-bind="command: saveNewAdminPasswordCommand, css: { 'btn-success': adminPasswordUpdateSuccess, 'btn-danger': adminPasswordUpdateError }">
<i class="icon-key" data-bind="css: {'icon-white': adminPasswordUpdateSuccess() || adminPasswordUpdateError() }"></i>
&nbsp;&nbsp;
2015-03-28 06:06:56 +08:00
<span data-i18n="TAB_SECURITY/BUTTON_UPDATE_PASSWORD"></span>
</a>
</div>
</div>
</div>
<div class="form-horizontal">
2015-03-28 06:06:56 +08:00
<div class="legend" data-i18n="TAB_SECURITY/LEGEND_SSL"></div>
<div class="control-group">
<div class="controls">
<div data-bind="component: {
name: 'Checkbox',
params: {
value: verifySslCertificate,
2015-03-28 06:06:56 +08:00
label: 'TAB_SECURITY/LABEL_REQUIRE_VERIFICATION',
inline: true
}
}"></div>
&nbsp;&nbsp;
2015-03-28 06:06:56 +08:00
<span style="color:red">(<span data-i18n="HINTS/UNSTABLE"></span>)</span>
<br />
<div data-bind="component: {
name: 'Checkbox',
params: {
enable: verifySslCertificate,
value: allowSelfSigned,
2015-03-28 06:06:56 +08:00
label: 'TAB_SECURITY/LABEL_ALLOW_SELF_SIGNED'
}
}"></div>
</div>
</div>
</div>
2013-09-25 03:04:44 +08:00
</div>