2018-10-25 04:07:10 +02:00
|
|
|
const html = require('choo/html');
|
|
|
|
const assets = require('../../common/assets');
|
|
|
|
|
|
|
|
module.exports = function(state) {
|
|
|
|
return html`
|
2018-10-30 19:37:33 +01:00
|
|
|
<main class="main container">
|
2018-11-05 09:12:40 +01:00
|
|
|
<div class="flex flex-col items-center bg-white m-6 px-6 py-8 border border-grey-light md:border-none md:px-12 md:py-16 shadow w-full md:h-full">
|
|
|
|
<h1 class="text-2xl text-center">${state.translate(
|
|
|
|
'errorPageHeader'
|
|
|
|
)}</h1>
|
2018-11-02 10:27:59 +01:00
|
|
|
<img class="my-16" src="${assets.get('illustration_error.svg')}"/>
|
|
|
|
<p class="max-w-md leading-normal">
|
|
|
|
${state.translate('uploadPageExplainer')}
|
|
|
|
</p>
|
2018-11-05 09:12:40 +01:00
|
|
|
<a class="text-blue mt-10 font-medium" href="/">
|
2018-11-02 10:27:59 +01:00
|
|
|
${state.translate('sendYourFilesLink')}
|
|
|
|
</a>
|
2018-10-25 04:07:10 +02:00
|
|
|
</div>
|
|
|
|
</main>`;
|
|
|
|
};
|