
CUSTOM_INTRO_TITLE > introTitle CUSTOM_INTRO_DESCRIPTION: > introDescription CUSTOM_DOWNLOAD_DESCRIPTION: downloadDescription CUSTOM_TRY_SEND_DESCRIPTION: trySendDescription CUSTOM_SEND_YOUR_FILES_LINK: sendYourFilesLink CUSTOM_INTRO_TITLE: "Secure & Simple" CUSTOM_INTRO_DESCRIPTION: "Share files with end-to-end encryption and a link that expires." CUSTOM_DOWNLOAD_DESCRIPTION: "Shared with end-to-end encryption and a link that expires." CUSTOM_TRY_SEND_DESCRIPTION: "Secure, Simple file sharing" CUSTOM_SEND_YOUR_FILES_LINK: "Upload Files"
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
const html = require('choo/html');
|
|
const assets = require('../../common/assets');
|
|
const modal = require('./modal');
|
|
|
|
module.exports = function(state, emit) {
|
|
const btnText = state.WEB_UI.CUSTOM_SEND_YOUR_FILES_LINK
|
|
? state.WEB_UI.CUSTOM_SEND_YOUR_FILES_LINK
|
|
: state.user.loggedIn
|
|
? 'okButton'
|
|
: 'sendYourFilesLink';
|
|
const trySendDescription =
|
|
state.WEB_UI.CUSTOM_TRY_SEND_DESCRIPTION ||
|
|
state.translate('trySendDescription');
|
|
return html`
|
|
<main class="main">
|
|
${state.modal && modal(state, emit)}
|
|
<section
|
|
class="flex flex-col items-center justify-center h-full w-full p-6 md:p-8 overflow-hidden md:rounded-xl md:shadow-big"
|
|
>
|
|
<h1 class="text-center text-3xl font-bold my-2">
|
|
${state.translate('errorPageHeader')}
|
|
</h1>
|
|
<svg class="text-primary my-12 h-48">
|
|
<use xlink:href="${assets.get('error.svg')}#svg114" />
|
|
</svg>
|
|
<p
|
|
class="max-w-md text-center text-grey-80 leading-normal dark:text-grey-40 ${state
|
|
.user.loggedIn
|
|
? 'hidden'
|
|
: ''}"
|
|
>
|
|
${trySendDescription}
|
|
</p>
|
|
<p class="my-5">
|
|
<a href="/" class="btn rounded-lg flex items-center" role="button"
|
|
>${state.WEB_UI.CUSTOM_SEND_YOUR_FILES_LINK
|
|
? btnText
|
|
: state.translate(btnText)}</a
|
|
>
|
|
</p>
|
|
</section>
|
|
</main>
|
|
`;
|
|
};
|