mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03:00
Release commit (1.7)
This commit is contained in:
parent
d5c68d1761
commit
7b97a9f85d
25 changed files with 118 additions and 74 deletions
|
|
@ -33,9 +33,9 @@
|
|||
</button>
|
||||
</div>
|
||||
</form>
|
||||
<!-- <div class="e-powered thm-powered" data-bind="visible: logoPowered">
|
||||
<div class="e-powered thm-powered" data-bind="visible: logoPowered">
|
||||
Powered by <a href="http://rainloop.net" target="_blank">RainLoop</a>
|
||||
</div>-->
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
<div class="loginAfter"></div>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<div class="b-admin-branding">
|
||||
<div class="row" data-bind="visible: !capa">
|
||||
<div class="alert span8" style="margin-top: 10px;">
|
||||
Full functionality available in <strong><a href="#/licensing">Premium version</a></strong> only.
|
||||
This functionality is available for <strong><a href="#/licensing">Premium</a></strong> subscribers.
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-horizontal" data-bind="css: {'disabled-form': !capa}">
|
||||
|
|
@ -77,17 +77,18 @@
|
|||
}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="control-group">
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<div data-bind="component: {
|
||||
name: 'Checkbox',
|
||||
params: {
|
||||
label: 'Show "Powered by RainLoop" link',
|
||||
enable: capa,
|
||||
label: 'Show "Powered by RainLoop" link (White Labeling)',
|
||||
value: loginPowered
|
||||
}
|
||||
}"></div>
|
||||
</div>
|
||||
</div>-->
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label">
|
||||
Custom CSS
|
||||
|
|
|
|||
|
|
@ -6,17 +6,18 @@
|
|||
Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)</strong> license.
|
||||
<br />
|
||||
<br />
|
||||
You are <strong>free</strong> to use it for your <strong>personal</strong> or <strong>non-profit</strong> projects.
|
||||
You are <strong>free</strong> to use it for your <strong>personal</strong> projects.
|
||||
<br />
|
||||
<br />
|
||||
Commercial use of <strong>RainLoop Webmail</strong> requires getting a
|
||||
<a href="http://rainloop.net/purchase/" target="_blank">permission</a>.
|
||||
Commercial use (with additional features) of <strong>RainLoop Webmail</strong> requires getting a
|
||||
<a href="http://rainloop.net/purchase/" target="_blank">subscription</a>.
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div class="form-horizontal">
|
||||
<div class="control-group">
|
||||
<label class="control-label">
|
||||
Your Domain
|
||||
Your domain
|
||||
</label>
|
||||
<div class="controls">
|
||||
<span class="help-inline" style="padding-top: 5px;">
|
||||
|
|
@ -25,29 +26,49 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="control-group" data-bind="visible: !subscriptionEnabled()">
|
||||
<label class="control-label" style="padding-top: 20px">
|
||||
Version
|
||||
</label>
|
||||
<div class="controls">
|
||||
<div class="alert alert-block span8" style="margin-left: 0">
|
||||
This domain can't be licensed for commercial use.
|
||||
<h4>
|
||||
Basic
|
||||
<span data-bind="visible: licenseIsUnlim()"> (Unlim)</span>
|
||||
</h4>
|
||||
<br />
|
||||
<p>
|
||||
This domain can't be licensed.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group" data-bind="visible: subscriptionEnabled">
|
||||
<label class="control-label" style="padding-top: 20px">
|
||||
Version
|
||||
</label>
|
||||
<div class="controls">
|
||||
<div data-bind="visible: licensingProcess()">
|
||||
<div data-bind="visible: licensingProcess()" style="padding-top: 20px">
|
||||
<i class="icon-spinner animated"></i>
|
||||
|
||||
Checking…
|
||||
</div>
|
||||
<div data-bind="visible: !licensingProcess()">
|
||||
<div class="alert alert-block span8" style="margin-left: 0" data-bind="visible: !licensing()">
|
||||
This domain isn't licensed for commercial use.
|
||||
<div class="alert alert-block span8" style="margin-left: 0; padding-top: 20px" data-bind="visible: !licensing()">
|
||||
<h4>
|
||||
Basic
|
||||
</h4>
|
||||
<br />
|
||||
<p>
|
||||
This domain isn't licensed for commercial use (with additional features).
|
||||
</p>
|
||||
</div>
|
||||
<div data-bind="visible: licensing()">
|
||||
<div class="alert alert-success span8" style="margin-left: 0" data-bind="visible: licenseValid() && '' === licenseError()">
|
||||
<p>
|
||||
This domain is licensed for commercial use
|
||||
</p>
|
||||
<p data-bind="visible: 0 < licenseExpired()">
|
||||
<div class="alert alert-success span8" style="margin-left: 0; padding-top: 20px" data-bind="visible: licenseValid() && '' === licenseError()">
|
||||
<h4>
|
||||
<span data-bind="visible: licenseIsUnlim()">Lifetime (Premium)</span>
|
||||
<span data-bind="visible: !licenseIsUnlim()">Premium</span>
|
||||
</h4>
|
||||
<p data-bind="visible: 0 < licenseExpired()" style="padding-top: 10px">
|
||||
<b>Subscription expires:</b>
|
||||
|
||||
<span data-bind="text: licenseExpiredMomentValue()"></span>
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
<br />
|
||||
<div class="alert">
|
||||
<p>
|
||||
After activation, commercial subscription for <strong data-bind="text: domain"></strong> will be extended.
|
||||
After activation, premium subscription for <strong data-bind="text: domain"></strong> will be extended.
|
||||
<br />
|
||||
Note that subscription key can be activated for a single domain only.
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -84,9 +84,9 @@
|
|||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<!-- <div class="e-powered thm-powered" data-bind="visible: logoPowered">
|
||||
<div class="e-powered thm-powered" data-bind="visible: logoPowered">
|
||||
Powered by <a href="http://rainloop.net" target="_blank">RainLoop</a>
|
||||
</div>-->
|
||||
</div>
|
||||
<div class="e-languages thm-languages" data-bind="visible: allowLanguagesOnLogin() && socialLoginEnabled()">
|
||||
<label class="flag-selector">
|
||||
<i data-bind="css: langRequest() ? 'icon-spinner animated' : 'icon-world'"></i>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue