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

25 lines
750 B
JavaScript
Raw Normal View History

const html = require('choo/html');
const assets = require('../../common/assets');
module.exports = function(state) {
return html`
<div
id="download-complete"
class="flex flex-col items-center justify-center h-full w-full bg-white p-2"
>
2019-06-14 20:30:43 +02:00
<h1 class="text-center text-3xl font-bold my-2">
${state.translate('downloadFinish')}
</h1>
<img src="${assets.get('completed.svg')}" class="my-12 h-48" />
2019-03-01 00:53:13 +01:00
<p class="text-grey-darkest leading-normal">
${state.translate('trySendDescription')}
</p>
<p class="my-5">
<a href="/" class="btn rounded-lg flex items-center mt-4" role="button"
>${state.translate('sendYourFilesLink')}</a
>
</p>
</div>
`;
};