24
1
Fork 0
drop.chapril.org-firefoxsend/app/ui/notFound.js

30 lines
923 B
JavaScript
Raw Normal View History

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) {
2018-10-25 04:07:10 +02:00
return html`
2018-11-16 21:39:36 +01:00
<main class="main container">
2019-01-29 22:08:54 +01:00
${state.modal && modal(state, emit)}
2018-11-16 21:39:36 +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"
2018-11-16 21:39:36 +01:00
>
<h1 class="text-pink-dark text-2xl text-center">
${state.translate('expiredPageHeader')}
</h1>
<img
class="my-16"
src="${assets.get('illustration_expired.svg')}"
id="expired-img"
/>
<p class="max-w-md leading-normal">
${state.translate('uploadPageExplainer')}
</p>
<a class="text-blue mt-10 font-medium" href="/">
${state.translate('sendYourFilesLink')}
</a>
</div>
</main>
`;
2018-10-25 04:07:10 +02:00
};