2018-10-25 04:07:10 +02:00
|
|
|
const html = require('choo/html');
|
|
|
|
const raw = require('choo/html/raw');
|
|
|
|
|
|
|
|
module.exports = function(state) {
|
|
|
|
return html`
|
2018-10-30 19:37:33 +01:00
|
|
|
<main class="main container">
|
2018-10-25 04:07:10 +02:00
|
|
|
<div class="flex flex-col items-center bg-white m-6 p-4 border border-grey-light md:border-none md:px-12">
|
|
|
|
<h1 class="">${state.translate('legalHeader')}</h1>
|
|
|
|
${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>
|
|
|
|
</main>`;
|
|
|
|
};
|
|
|
|
|
|
|
|
function replaceLinks(str, urls) {
|
|
|
|
let i = 0;
|
|
|
|
const s = str.replace(
|
|
|
|
/<a>([^<]+)<\/a>/g,
|
|
|
|
(m, v) => `<a class="text-blue" href="${urls[i++]}">${v}</a>`
|
|
|
|
);
|
|
|
|
return `<p class="m-4">${s}</p>`;
|
|
|
|
}
|