mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 16:58:07 +08:00
4cc2207513
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
92 lines
No EOL
3.3 KiB
HTML
92 lines
No EOL
3.3 KiB
HTML
<div class="b-admin-general">
|
|
<div class="row" data-bind="visible: weakPassword">
|
|
<div class="alert alert-error span8">
|
|
<h4>Warning!</h4>
|
|
<br />
|
|
You are using the default admin password.
|
|
<br />
|
|
For security reasons please <strong><a href="#/security">change</a></strong>
|
|
password to something else now.
|
|
</div>
|
|
</div>
|
|
<div class="row" data-bind="visible: !contactsSupported">
|
|
<div class="alert span8">
|
|
<h4>Notice!</h4>
|
|
<br />
|
|
<strong>Contacts</strong> functions are not supported.
|
|
<br />
|
|
You need to install or enable <strong>PDO (sqlite)</strong> exstenstion on your server.
|
|
</div>
|
|
</div>
|
|
<div class="form-horizontal">
|
|
<div class="legend">
|
|
General
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">
|
|
Title
|
|
</label>
|
|
<div class="controls">
|
|
<input type="text" data-bind="value: title, saveTrigger: titleTrigger" />
|
|
<div data-bind="saveTrigger: titleTrigger"></div>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">
|
|
Loading Description
|
|
</label>
|
|
<div class="controls">
|
|
<input type="text" data-bind="value: loadingDesc, saveTrigger: loadingDescTrigger" />
|
|
<div data-bind="saveTrigger: loadingDescTrigger"></div>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">
|
|
Language
|
|
</label>
|
|
<div class="controls">
|
|
<select data-bind="options: languagesOptions, value: mainLanguage, optionsText: 'optText', optionsValue: 'optValue', saveTrigger: languageTrigger"></select>
|
|
<div data-bind="saveTrigger: languageTrigger"></div>
|
|
<br />
|
|
<br />
|
|
<label data-bind="click: function () { allowLanguagesOnSettings(!allowLanguagesOnSettings()); }">
|
|
<i data-bind="css: allowLanguagesOnSettings() ? 'icon-checkbox-checked' : 'icon-checkbox-unchecked'"></i>
|
|
Allow language selection on settings screen
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">
|
|
Theme
|
|
</label>
|
|
<div class="controls">
|
|
<select data-bind="options: themesOptions, value: mainTheme, optionsText: 'optText', optionsValue: 'optValue', saveTrigger: themeTrigger"></select>
|
|
<div data-bind="saveTrigger: themeTrigger"></div>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<div class="controls">
|
|
<label data-bind="click: function () { allowThemes(!allowThemes()); }">
|
|
<i data-bind="css: allowThemes() ? 'icon-checkbox-checked' : 'icon-checkbox-unchecked'"></i>
|
|
Allow theme selection on settings screen
|
|
</label>
|
|
<label data-bind="click: function () { allowCustomTheme(!allowCustomTheme()); }">
|
|
<i data-bind="css: allowCustomTheme() ? 'icon-checkbox-checked' : 'icon-checkbox-unchecked'"></i>
|
|
Allow customized theme
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<div class="controls">
|
|
<label data-bind="click: function () { allowAdditionalAccounts(!allowAdditionalAccounts()); }">
|
|
<i data-bind="css: allowAdditionalAccounts() ? 'icon-checkbox-checked' : 'icon-checkbox-unchecked'"></i>
|
|
Allow additional accounts
|
|
</label>
|
|
<label data-bind="click: function () { allowIdentities(!allowIdentities()); }">
|
|
<i data-bind="css: allowIdentities() ? 'icon-checkbox-checked' : 'icon-checkbox-unchecked'"></i>
|
|
Allow identities
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |