1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-22 17:11:32 +02:00
send/app/templates/error.js

11 lines
319 B
JavaScript
Raw Normal View History

const html = require('choo/html');
const assets = require('../../common/assets');
module.exports = function(state) {
return html`
<div id="upload-error">
<div class="title">${state.translate('errorPageHeader')}</div>
2017-08-25 22:14:17 +02:00
<img id="upload-error-img" src="${assets.get('illustration_error.svg')}"/>
</div>`;
};