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

33 lines
993 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">
2019-02-22 16:42:08 +01:00
${state.translate('expiredPageHeaderUpdate')}
2018-11-16 21:39:36 +01:00
</h1>
<img
class="my-16"
src="${assets.get('illustration_expired.svg')}"
id="expired-img"
/>
2019-02-22 16:42:08 +01:00
<p class="pb-2">${state.translate('downloadFinishText')}</p>
<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
};