index.js 517 B

12345678910111213141516171819
  1. const html = require('choo/html');
  2. const titleSection = require('../../templates/title');
  3. const downloadPassword = require('../../templates/downloadPassword');
  4. module.exports = function(state, emit) {
  5. return html`
  6. <main class="main page">
  7. ${titleSection(state)}
  8. <div class="description">${state.translate('downloadMessage2')}</div>
  9. ${downloadPassword(state, emit)}
  10. <a class="link link--action" href="/">
  11. ${state.translate('sendYourFilesLink')}
  12. </a>
  13. </main>
  14. `;
  15. };