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

31 lines
965 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`
2019-02-22 22:31:54 +01:00
<main class="main">
2019-01-29 22:08:54 +01:00
${state.modal && modal(state, emit)}
2018-11-16 21:39:36 +01:00
<div
2019-02-27 20:42:43 +01:00
class="flex flex-col items-center h-full w-full p-6 z-10 overflow-hidden md:rounded-lg md:shadow-big"
2018-11-16 21:39:36 +01:00
>
2019-02-27 20:42:43 +01:00
<h1 class="text-center font-bold my-4 text-2xl">
2019-02-22 16:42:08 +01:00
${state.translate('expiredPageHeaderUpdate')}
2018-11-16 21:39:36 +01:00
</h1>
2019-02-27 20:42:43 +01:00
<p class="pb-2 max-w-md text-center text-grey-darkest leading-normal">
2019-02-26 23:52:37 +01:00
${state.translate('downloadFinishText')}
</p>
<img src="${assets.get('notFound.svg')}" class="max-w-sm" />
2019-02-22 16:42:08 +01:00
<p class="mb-4">
<a
href="/"
class="btn rounded-lg flex items-center mt-4"
role="button"
>${state.translate('sendYourFilesLink')}</a
>
2018-11-16 21:39:36 +01:00
</p>
</div>
</main>
`;
2018-10-25 04:07:10 +02:00
};