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