12345678910111213141516171819 |
- const html = require('choo/html');
- const titleSection = require('../../templates/title');
- const downloadPassword = require('../../templates/downloadPassword');
- module.exports = function(state, emit) {
- return html`
- <main class="main page">
- ${titleSection(state)}
- <div class="description">${state.translate('downloadMessage2')}</div>
- ${downloadPassword(state, emit)}
- <a class="link link--action" href="/">
- ${state.translate('sendYourFilesLink')}
- </a>
- </main>
- `;
- };
|