drop.chapril.org-firefoxsend/app/ui/notFound.js
Danny Coates 7716ba6e77
added warning page for browsers without streams downloading big files (#1175)
* added warning page for browsers without streams downloading big files

* fixed illustration size in Edge

* updated nostreams style
2019-02-28 14:28:18 -08:00

31 lines
965 B
JavaScript

const html = require('choo/html');
const assets = require('../../common/assets');
const modal = require('./modal');
module.exports = function(state, emit) {
return html`
<main class="main">
${state.modal && modal(state, emit)}
<div
class="flex flex-col items-center h-full w-full p-6 z-10 overflow-hidden md:rounded-lg md:shadow-big"
>
<h1 class="text-center font-bold my-4 text-2xl">
${state.translate('expiredPageHeaderUpdate')}
</h1>
<p class="pb-2 max-w-md text-center text-grey-darkest leading-normal">
${state.translate('downloadFinishText')}
</p>
<img src="${assets.get('notFound.svg')}" class="max-w-sm" />
<p class="mb-4">
<a
href="/"
class="btn rounded-lg flex items-center mt-4"
role="button"
>${state.translate('sendYourFilesLink')}</a
>
</p>
</div>
</main>
`;
};