mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 13:13:00 +01:00
36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
const html = require('choo/html');
|
|
const raw = require('choo/html/raw');
|
|
|
|
function replaceLinks(str, urls) {
|
|
let i = -1;
|
|
const s = str.replace(/<a>([^<]+)<\/a>/g, (m, v) => {
|
|
i++;
|
|
return `<a href="${urls[i]}">${v}</a>`;
|
|
});
|
|
return `<div class="description">${s}</div>`;
|
|
}
|
|
|
|
module.exports = function(state) {
|
|
const div = html`
|
|
<div id="page-one">
|
|
<div id="legal">
|
|
<div class="title">${state.translate('legalHeader')}</div>
|
|
${raw(
|
|
replaceLinks(state.translate('legalNoticeTestPilot'), [
|
|
'https://testpilot.firefox.com/terms',
|
|
'https://testpilot.firefox.com/privacy',
|
|
'https://testpilot.firefox.com/experiments/send'
|
|
])
|
|
)}
|
|
${raw(
|
|
replaceLinks(state.translate('legalNoticeMozilla'), [
|
|
'https://www.mozilla.org/privacy/websites/',
|
|
'https://www.mozilla.org/about/legal/terms/mozilla/'
|
|
])
|
|
)}
|
|
</div>
|
|
</div>
|
|
`;
|
|
return div;
|
|
};
|