mirror of https://github.com/xwiki-labs/cryptpad
update landing page styles and copy text
This commit is contained in:
parent
50695f41ed
commit
1a5388eab9
|
@ -6,6 +6,8 @@
|
|||
bottom:0px;
|
||||
right:0px;
|
||||
height:4%;
|
||||
height: 2.5em;
|
||||
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
background: rgb(23, 35, 34);
|
||||
|
@ -21,6 +23,7 @@
|
|||
display:block;
|
||||
float:left;
|
||||
padding-top:3px;
|
||||
color: rgb(39, 176, 0);
|
||||
}
|
||||
.bottom-bar-left {
|
||||
display:block;
|
||||
|
@ -48,6 +51,10 @@
|
|||
.bottom-bar-xwiki {
|
||||
top: 3px;
|
||||
}
|
||||
.bottom-bar-openpaas {
|
||||
top: 3px;
|
||||
max-width: 120px;
|
||||
}
|
||||
</style>
|
||||
<div class="bottom-bar">
|
||||
<div class="bottom-bar-left">
|
||||
|
@ -60,9 +67,10 @@
|
|||
</a>
|
||||
</p>
|
||||
</div>
|
||||
<!--
|
||||
<div class="bottom-bar-center">
|
||||
<p><a href="https://github.com/xwiki-labs/cryptpad">Fork me on GitHub</a></p>
|
||||
</div>
|
||||
</div> -->
|
||||
<div class="bottom-bar-right">
|
||||
<p>
|
||||
<a href="http://labs.xwiki.com/" title="XWiki Labs">
|
||||
|
@ -70,8 +78,11 @@
|
|||
<img src="/customize/logo-xwiki2.png"
|
||||
alt="XWiki SAS"
|
||||
class="bottom-bar-xwiki"
|
||||
/>
|
||||
Labs Project
|
||||
/> Labs Project </a> with the support of
|
||||
<a href="http://ng.open-paas.org/" title="OpenPaaS::ng"> <img src="/customize/openpaasng.png"
|
||||
alt="OpenPaaS-ng"
|
||||
class="bottom-bar-openpaas" />
|
||||
</a>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -94,15 +94,19 @@
|
|||
<center>
|
||||
<img class="imgcenter" src="/customize/cryptofist_small.png" />
|
||||
<h1>Unity is Strength - Collaboration is Key</h1>
|
||||
|
||||
<h2>With the support of</h2>
|
||||
|
||||
<img class="imgcenter" src="/customize/openpaas.png" />
|
||||
|
||||
</center>
|
||||
<p>CryptPad is the <strong>zero knowledge</strong> realtime collaborative editor.
|
||||
Encryption carried out in your web browser protects the data from the server, the cloud
|
||||
and the NSA. This project uses the <a href="http://ckeditor.com/">CKEditor</a> Visual Editor
|
||||
the <a href="https://github.com/xwiki-contrib/chainpad">ChainPad</a> realtime engine. The secret
|
||||
encryption key is stored in the URL
|
||||
<a href="https://en.wikipedia.org/wiki/Fragment_identifier">fragment identifier</a> which is
|
||||
never sent to the server but is available to javascript so by sharing the URL, you give
|
||||
authorization to others who want to participate.</p>
|
||||
Encryption carried out in your web browser protects the data from the server, the cloud,
|
||||
and the NSA.
|
||||
The secret encryption key is stored in the URL <a href="https://en.wikipedia.org/wiki/Fragment_identifier">fragment identifier</a> which is never sent to the server but is available to javascript so by sharing the URL, you give authorization to others who want to participate.</p>
|
||||
|
||||
<p>This project uses the <a href="http://ckeditor.com/">CKEditor</a> Visual Editor
|
||||
the <a href="https://github.com/xwiki-contrib/chainpad">ChainPad</a> realtime engine.</p>
|
||||
|
||||
</code></pre><h2 id="howitworks">How It Works</h2>
|
||||
<p>CryptPad uses a variant of the
|
||||
|
@ -113,7 +117,7 @@
|
|||
Conflicts and without the need for resolving conflicts, the server can be kept unaware of the
|
||||
content which is being edited on the pad.</p>
|
||||
|
||||
<p><strong>NOTE</strong> Pads and spreadsheets will be removed after 30 days of inactivity</p>
|
||||
<p><strong>NOTE</strong> Collaborative documents will be removed after 30 days of inactivity</p>
|
||||
<center>
|
||||
<noscript>
|
||||
<p>
|
||||
|
@ -122,15 +126,6 @@
|
|||
</p>
|
||||
</noscript>
|
||||
<script>
|
||||
require(['/common/crypto.js', '/api/config?cb=' + Math.random().toString(16).substring(2)], function (Crypto, Config) {
|
||||
document.getElementById('buttons').setAttribute('style', '');
|
||||
document.getElementById('create-pad').setAttribute('href', '/pad/');
|
||||
if(Config.webrtcURL !== '') {
|
||||
document.getElementById('create-rtcpad').setAttribute('href', '/padrtc/');
|
||||
}
|
||||
document.getElementById('create-sheet').setAttribute('href', '/sheet/#' + Crypto.genKey());
|
||||
document.getElementById('create-code').setAttribute('href', '/code/#' + Crypto.genKey());
|
||||
});
|
||||
require([
|
||||
'/customize/DecorateToolbar.js',
|
||||
'/bower_components/jquery/dist/jquery.min.js'
|
||||
|
@ -216,11 +211,9 @@
|
|||
</tbody>
|
||||
</table>
|
||||
|
||||
<div id="buttons" class="buttons" style="display:none;">
|
||||
<a id="create-pad" class="button create" href="pad">CREATE NEW PAD</a>
|
||||
<a id="create-rtcpad" class="button create" href="pad">CREATE NEW WEBRTC PAD</a>
|
||||
<!--<a id="create-sheet" class="button create" href="sheet">CREATE NEW SPREADSHEET</a>-->
|
||||
<a id="create-code" class="button create" href="code">CREATE NEW CODE COLLABORATION PAD</a>
|
||||
<div id="buttons" class="buttons">
|
||||
<a id="create-pad" class="button create" href="/pad/">CREATE NEW WYSIWYG PAD</a>
|
||||
<a id="create-code" class="button create" href="/code/">CREATE NEW CODE PAD</a>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.8 KiB |
Loading…
Reference in New Issue