1234567891011121314151617181920212223242526272829303132333435363738 |
- const html = require('choo/html');
- const assets = require('../../common/assets');
- const modal = require('./modal');
- module.exports = function(state, emit) {
- const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
- return html`
- <main class="main">
- ${state.modal && modal(state, emit)}
- <section
- class="flex flex-col items-center justify-center h-full w-full p-6 md:p-8 overflow-hidden md:rounded-xl md:shadow-big"
- >
- <h1 class="text-center text-3xl font-bold my-2">
- ${state.translate('expiredTitle')}
- </h1>
- <img src="${assets.get('notFound.svg')}" class="my-12" />
- <p
- class="max-w-md text-center text-grey-80 leading-normal dark:text-grey-40 ${state
- .user.loggedIn
- ? 'hidden'
- : ''}"
- >
- ${state.translate('trySendDescription')}
- </p>
- <p class="my-5">
- <a href="/" class="btn rounded-lg flex items-center" role="button"
- >${state.translate(btnText)}</a
- >
- </p>
- <p class="">
- <a href="/report" class="link-blue"
- >${state.translate('reportFile')}</a
- >
- </p>
- </section>
- </main>
- `;
- };
|