2018-10-25 04:07:10 +02:00
|
|
|
const html = require('choo/html');
|
|
|
|
const assets = require('../../common/assets');
|
2019-01-29 22:08:54 +01:00
|
|
|
const modal = require('./modal');
|
2018-10-25 04:07:10 +02:00
|
|
|
|
2019-01-29 22:08:54 +01:00
|
|
|
module.exports = function(state, emit) {
|
2020-07-30 05:56:39 +02:00
|
|
|
const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
|
2018-10-25 04:07:10 +02:00
|
|
|
return html`
|
2019-02-22 22:31:54 +01:00
|
|
|
<main class="main">
|
2019-01-29 22:08:54 +01:00
|
|
|
${state.modal && modal(state, emit)}
|
2019-03-01 00:53:13 +01:00
|
|
|
<section
|
2019-05-03 18:26:10 +02:00
|
|
|
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"
|
2018-11-16 21:39:36 +01:00
|
|
|
>
|
2019-06-14 20:30:43 +02:00
|
|
|
<h1 class="text-center text-3xl font-bold my-2">
|
2018-11-16 21:39:36 +01:00
|
|
|
${state.translate('errorPageHeader')}
|
|
|
|
</h1>
|
2019-03-01 20:05:43 +01:00
|
|
|
<img class="my-12 h-48" src="${assets.get('error.svg')}" />
|
2020-07-30 05:56:39 +02:00
|
|
|
<p
|
|
|
|
class="max-w-md text-center text-grey-80 leading-normal dark:text-grey-40 ${state
|
|
|
|
.user.loggedIn
|
|
|
|
? 'hidden'
|
|
|
|
: ''}"
|
|
|
|
>
|
2019-03-04 23:13:18 +01:00
|
|
|
${state.translate('trySendDescription')}
|
2018-11-16 21:39:36 +01:00
|
|
|
</p>
|
2019-03-01 20:05:43 +01:00
|
|
|
<p class="my-5">
|
2019-03-01 00:53:13 +01:00
|
|
|
<a href="/" class="btn rounded-lg flex items-center" role="button"
|
2020-07-30 05:56:39 +02:00
|
|
|
>${state.translate(btnText)}</a
|
2019-02-27 20:42:43 +01:00
|
|
|
>
|
|
|
|
</p>
|
2019-03-01 00:53:13 +01:00
|
|
|
</section>
|
2018-11-16 21:39:36 +01:00
|
|
|
</main>
|
|
|
|
`;
|
2018-10-25 04:07:10 +02:00
|
|
|
};
|