|
@@ -4,19 +4,15 @@ const title = require('../../templates/title');
|
|
|
|
|
|
module.exports = function(state) {
|
|
module.exports = function(state) {
|
|
return html`
|
|
return html`
|
|
- <div class="page">
|
|
|
|
-
|
|
|
|
|
|
+ <main class="main page">
|
|
${title(state)}
|
|
${title(state)}
|
|
-
|
|
|
|
<div class="error">${state.translate('expiredPageHeader')}</div>
|
|
<div class="error">${state.translate('expiredPageHeader')}</div>
|
|
- <img src="${assets.get(
|
|
|
|
- 'illustration_expired.svg'
|
|
|
|
- )}" class="flexible" id="expired-img">
|
|
|
|
|
|
+ <img src="${assets.get('illustration_expired.svg')}" id="expired-img">
|
|
<div class="description">
|
|
<div class="description">
|
|
${state.translate('uploadPageExplainer')}
|
|
${state.translate('uploadPageExplainer')}
|
|
</div>
|
|
</div>
|
|
<a class="link link--action" href="/">
|
|
<a class="link link--action" href="/">
|
|
${state.translate('sendYourFilesLink')}
|
|
${state.translate('sendYourFilesLink')}
|
|
</a>
|
|
</a>
|
|
- </div>`;
|
|
|
|
|
|
+ </main>`;
|
|
};
|
|
};
|