Improve pricing visibility

This commit is contained in:
yflory 2019-08-23 16:19:45 +02:00
parent 74372ba5d4
commit c95db33157
5 changed files with 50 additions and 4 deletions

View File

@ -26,7 +26,8 @@ var getLanguage = messages._getLanguage = function () {
var l = getBrowserLanguage(); var l = getBrowserLanguage();
// Edge returns 'fr-FR' --> transform it to 'fr' and check again // Edge returns 'fr-FR' --> transform it to 'fr' and check again
return map[l] ? l : return map[l] ? l :
(map[l.split('-')[0]] ? l.split('-')[0] : 'en'); (map[l.split('-')[0]] ? l.split('-')[0] :
(map[l.split('_')[0]] ? l.split('_')[0] : 'en'));
}; };
var language = getLanguage(); var language = getLanguage();

View File

@ -146,7 +146,7 @@ define([
//h('a.nav-item.nav-link', { href: '/what-is-cryptpad.html'}, Msg.topbar_whatIsCryptpad), // Moved the FAQ //h('a.nav-item.nav-link', { href: '/what-is-cryptpad.html'}, Msg.topbar_whatIsCryptpad), // Moved the FAQ
//h('a.nav-item.nav-link', { href: '/faq.html'}, Msg.faq_link), //h('a.nav-item.nav-link', { href: '/faq.html'}, Msg.faq_link),
h('a.nav-item.nav-link', { href: 'https://blog.cryptpad.fr/'}, Msg.blog), h('a.nav-item.nav-link', { href: 'https://blog.cryptpad.fr/'}, Msg.blog),
h('a.nav-item.nav-link', { href: '/features.html'}, Msg.features), h('a.nav-item.nav-link', { href: '/features.html'}, Msg.pricing),
h('a.nav-item.nav-link', { href: '/privacy.html'}, Msg.privacy), h('a.nav-item.nav-link', { href: '/privacy.html'}, Msg.privacy),
//h('a.nav-item.nav-link', { href: '/contact.html'}, Msg.contact), //h('a.nav-item.nav-link', { href: '/contact.html'}, Msg.contact),
//h('a.nav-item.nav-link', { href: '/about.html'}, Msg.about), //h('a.nav-item.nav-link', { href: '/about.html'}, Msg.about),

View File

@ -21,14 +21,17 @@ define([
target: '_blank', target: '_blank',
rel: 'noopener noreferrer' rel: 'noopener noreferrer'
}, h('button.cp-features-register-button', Msg.features_f_subscribe)); }, h('button.cp-features-register-button', Msg.features_f_subscribe));
$(premiumButton).click(function (e) { /*$(premiumButton).click(function (e) {
if (LocalStore.isLoggedIn()) { return; } if (LocalStore.isLoggedIn()) { return; }
// Not logged in: go to /login with a redirect to this page // Not logged in: go to /login with a redirect to this page
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
sessionStorage.redirectTo = '/features.html'; sessionStorage.redirectTo = '/features.html';
window.location.href = '/login/'; window.location.href = '/login/';
}); });*/
Msg.features_emailRequired = 'Email address required';
Msg.features_noData = 'No personal data required';
Msg.features_pricing = '{0}, {1} or {2}€/month';
return h('div#cp-main', [ return h('div#cp-main', [
Pages.infopageTopbar(), Pages.infopageTopbar(),
h('div.container-fluid.cp_cont_features',[ h('div.container-fluid.cp_cont_features',[
@ -43,6 +46,10 @@ define([
h('div.card-body',[ h('div.card-body',[
h('h3.text-center',Msg.features_anon) h('h3.text-center',Msg.features_anon)
]), ]),
h('div.card-body.cp-pricing',[
h('div.text-center', '0€'),
h('div.text-center', Msg.features_noData),
]),
h('ul.list-group.list-group-flush', h('ul.list-group.list-group-flush',
['apps', 'core', 'file0', 'cryptdrive0', 'storage0'].map(function (f) { ['apps', 'core', 'file0', 'cryptdrive0', 'storage0'].map(function (f) {
return h('li.list-group-item', [ return h('li.list-group-item', [
@ -61,6 +68,10 @@ define([
h('div.card-body',[ h('div.card-body',[
h('h3.text-center',Msg.features_registered) h('h3.text-center',Msg.features_registered)
]), ]),
h('div.card-body.cp-pricing',[
h('div.text-center', '0€'),
h('div.text-center', Msg.features_noData),
]),
h('ul.list-group.list-group-flush', [ h('ul.list-group.list-group-flush', [
['anon', 'social', 'file1', 'cryptdrive1', 'devices', 'storage1'].map(function (f) { ['anon', 'social', 'file1', 'cryptdrive1', 'devices', 'storage1'].map(function (f) {
return h('li.list-group-item', [ return h('li.list-group-item', [
@ -87,6 +98,13 @@ define([
h('div.card-body',[ h('div.card-body',[
h('h3.text-center',Msg.features_premium) h('h3.text-center',Msg.features_premium)
]), ]),
h('div.card-body.cp-pricing',[
h('div.text-center', h('a', {
href: accounts.upgradeURL,
target: '_blank'
}, Msg._getKey('features_pricing', ['5', '10', '15']))),
h('div.text-center', Msg.features_emailRequired),
]),
h('ul.list-group.list-group-flush', [ h('ul.list-group.list-group-flush', [
['reg', 'storage2', 'support', 'supporter'].map(function (f) { ['reg', 'storage2', 'support', 'supporter'].map(function (f) {
return h('li.list-group-item', [ return h('li.list-group-item', [

View File

@ -47,6 +47,12 @@
h3 { h3 {
margin: 0; margin: 0;
} }
&.cp-pricing {
div {
font-size: 1.2em;
color: @cryptpad_color_blue;
}
}
} }
} }
h3 { h3 {

View File

@ -1859,6 +1859,15 @@ define([
content: $userAdminContent.html() content: $userAdminContent.html()
}); });
} }
options.push({
tag: 'a',
attributes: {
'target': '_blank',
'href': origin+'/index.html',
'class': 'fa fa-home'
},
content: h('span', Messages.homePage)
});
if (padType !== 'drive' || (!accountName && priv.newSharedFolder)) { if (padType !== 'drive' || (!accountName && priv.newSharedFolder)) {
options.push({ options.push({
tag: 'a', tag: 'a',
@ -1870,6 +1879,7 @@ define([
content: h('span', Messages.login_accessDrive) content: h('span', Messages.login_accessDrive)
}); });
} }
options.push({ tag: 'hr' });
// Add the change display name button if not in read only mode // Add the change display name button if not in read only mode
if (config.changeNameButtonCls && config.displayChangeName && !AppConfig.disableProfile) { if (config.changeNameButtonCls && config.displayChangeName && !AppConfig.disableProfile) {
options.push({ options.push({
@ -1892,6 +1902,7 @@ define([
content: h('span', Messages.settingsButton) content: h('span', Messages.settingsButton)
}); });
} }
options.push({ tag: 'hr' });
// Add administration panel link if the user is an admin // Add administration panel link if the user is an admin
if (priv.edPublic && Array.isArray(Config.adminKeys) && Config.adminKeys.indexOf(priv.edPublic) !== -1) { if (priv.edPublic && Array.isArray(Config.adminKeys) && Config.adminKeys.indexOf(priv.edPublic) !== -1) {
options.push({ options.push({
@ -1907,6 +1918,16 @@ define([
content: h('span', Messages.supportPage || 'Support') content: h('span', Messages.supportPage || 'Support')
}); });
} }
options.push({
tag: 'a',
attributes: {
'target': '_blank',
'href': origin+'/features.html',
'class': 'fa fa-star-o'
},
content: h('span', priv.plan ? Messages.settings_cat_subscription : Messages.pricing)
});
options.push({ tag: 'hr' });
// Add login or logout button depending on the current status // Add login or logout button depending on the current status
if (accountName) { if (accountName) {
options.push({ options.push({