summaryrefslogtreecommitdiff
path: root/frontend/gamma/js/Clipperz/PM/UI/Web/Components/LoginPage.js
Side-by-side diff
Diffstat (limited to 'frontend/gamma/js/Clipperz/PM/UI/Web/Components/LoginPage.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/js/Clipperz/PM/UI/Web/Components/LoginPage.js22
1 files changed, 10 insertions, 12 deletions
diff --git a/frontend/gamma/js/Clipperz/PM/UI/Web/Components/LoginPage.js b/frontend/gamma/js/Clipperz/PM/UI/Web/Components/LoginPage.js
index 2894af8..3498e3f 100644
--- a/frontend/gamma/js/Clipperz/PM/UI/Web/Components/LoginPage.js
+++ b/frontend/gamma/js/Clipperz/PM/UI/Web/Components/LoginPage.js
@@ -1,118 +1,116 @@
/*
-Copyright 2008-2011 Clipperz Srl
+Copyright 2008-2013 Clipperz Srl
-This file is part of Clipperz Community Edition.
-Clipperz Community Edition is an online password manager.
+This file is part of Clipperz, the online password manager.
For further information about its features and functionalities please
refer to http://www.clipperz.com.
-* Clipperz Community Edition is free software: you can redistribute
- it and/or modify it under the terms of the GNU Affero General Public
- License as published by the Free Software Foundation, either version
- 3 of the License, or (at your option) any later version.
+* Clipperz is free software: you can redistribute it and/or modify it
+ under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
-* Clipperz Community Edition is distributed in the hope that it will
- be useful, but WITHOUT ANY WARRANTY; without even the implied
- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+* Clipperz is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public
- License along with Clipperz Community Edition. If not, see
- <http://www.gnu.org/licenses/>.
+ License along with Clipperz. If not, see http://www.gnu.org/licenses/.
*/
Clipperz.Base.module('Clipperz.PM.UI.Web.Components');
Clipperz.PM.UI.Web.Components.LoginPage = function(args) {
args = args || {};
Clipperz.PM.UI.Web.Components.LoginPage.superclass.constructor.apply(this, arguments);
this._slots = {
'loginForm': this.getId('loginBoxSlot')
};
return this;
}
//=============================================================================
Clipperz.Base.extend(Clipperz.PM.UI.Web.Components.LoginPage, Clipperz.PM.UI.Common.Components.BaseComponent, {
//-------------------------------------------------------------------------
'toString': function () {
return "Clipperz.PM.UI.Web.Components.LoginPage component";
},
//-------------------------------------------------------------------------
'renderSelf': function(/*aContainer, aPosition*/) {
this.append(this.element(), [
{tag:'div', id:this.getId('loginBoxSlot')},
{tag:'div', id:'main', children:[
{tag:'div', id:'featurePoints', children:[
{tag:'table', children:[
{tag:'tr', children:[
{tag:'td', children:[
{tag:'div', cls:'block', children:[
{tag:'h3', html:'Clipperz is:'},
{tag:'ul', children:[
{tag:'li', html:'a secure and simple password manager'},
{tag:'li', html:'an effective single sign-on solution'},
{tag:'li', html:'a digital vault for your personal data'}
]}
]},
{tag:'div', cls:'block', children:[
{tag:'h3', html:'Clipperz benefits:'},
{tag:'ul', children:[
{tag:'li', html:'free and completely anonymous'},
{tag:'li', html:'access it any time from any computer'},
{tag:'li', html:'no software to download and nothing to install'},
{tag:'li', html:'avoid keeping secrets on your PC or on paper'}
]}
]}
]}, {tag:'td', children:[
{tag:'div', cls:'block', children:[
{tag:'h3', html:'Clipperz security:'},
{tag:'ul', children:[
{tag:'li', html:'your secretes are locally encrypted by your browser before being uploaded to Clipperz'},
{tag:'li', html:'the encryption key is a passphrase known only to you'},
{tag:'li', html:'Clipperz hosts your sensitive data in an encrypted form and could never access the data in its plain form'},
{tag:'li', html:'Clipperz is built upon standard encryption schemes, nothing fancies of homemade'},
{tag:'li', html:'you can review the source code anytime you like, but you need to know nothing about cryptography to be an happy user!'}
]}
]}
]}
]}
]}
]},
{tag:'div', cls:'activeFeatures', children:[
{tag:'div', id:this.getId('registerButton'), cls:'createAccountLink', children:[
{tag:'canvas', id:this.getId('registerButtonIcon')},
{tag:'a', href:'#', id:this.getId('createAccountLink'), cls:'createAccountLink', children:[
{tag:'span', cls:'payoff', html:"Free sign up!"},
{tag:'span', cls:'link', html:"Create account >>"}
]}
]},
{tag:'div', cls:'keepTogether', children:[
{tag:'div', id:this.getId('screenshotLink'), cls:'screenshotLink', children:[
{tag:'canvas', id:this.getId('lookIcon')},
{tag:'a', href:'#', cls:'screenshotLink', children:[
{tag:'span', cls:'payoff', html:"Look Clipperz!"},
{tag:'span', cls:'link', html:"screenshot tour >>"}
]}
]},
{tag:'div', id:this.getId('offlineLink'), cls:'offlineLink', children:[
{tag:'canvas', id:this.getId('downloadIcon')},
{tag:'a', href:'#', cls:'offlineLink', children:[
{tag:'span', cls:'payoff', html:"Download!"},
{tag:'span', cls:'link', html:"Offline version >>"}
]}
]}
]}
]}
]}
]);