1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-22 17:11:32 +02:00
send/app/templates/notFound.js
2018-01-30 09:37:42 -08:00

22 lines
639 B
JavaScript

const html = require('choo/html');
const assets = require('../../common/assets');
module.exports = function(state) {
const div = html`
<div id="page-one">
<div id="download">
<div class="title">${state.translate('expiredPageHeader')}</div>
<div class="share-window">
<img src="${assets.get('illustration_expired.svg')}" id="expired-img">
</div>
<div class="expired-description">
${state.translate('uploadPageExplainer')}
</div>
<a class="send-new" href="/" data-state="notfound">
${state.translate('sendYourFilesLink')}
</a>
</div>
</div>`;
return div;
};