diff --git a/public/locales/send.en-US.ftl b/public/locales/send.en-US.ftl index e0b41238..5e57d6d5 100644 --- a/public/locales/send.en-US.ftl +++ b/public/locales/send.en-US.ftl @@ -77,6 +77,9 @@ notSupportedHeader = Your browser is not supported. notSupportedDetail = Unfortunately this browser does not support the web technology that powers Firefox Send. You'll need to try another browser. We recommend Firefox! downloadFirefoxButtonSub = Free Download +legalHeader = Terms & Privacy +legalNoticeTestPilot = Firefox Send is currently a Test Pilot experiment, and subject to the Test Pilot Terms of Service and Privacy Notice. You can learn more about this experiment and its data collection here. +legalNoticeMozilla = Use of the Firefox Send website is also subject to Mozilla’s Websites Privacy Notice and Websites Terms of Use. sentFilesTitle1 = File sentFilesTitle2 = Copy URL diff --git a/server/server.js b/server/server.js index 9d4c6c3d..d3c10203 100644 --- a/server/server.js +++ b/server/server.js @@ -79,6 +79,10 @@ app.get('/unsupported', (req, res) => { res.render('unsupported'); }); +app.get('/legal', (req, res) => { + res.render('legal'); +}); + app.get('/jsconfig.js', (req, res) => { res.set('Content-Type', 'application/javascript'); res.render('jsconfig', { diff --git a/views/layouts/main.handlebars b/views/layouts/main.handlebars index 4ea9f0b3..fad8267f 100644 --- a/views/layouts/main.handlebars +++ b/views/layouts/main.handlebars @@ -13,7 +13,7 @@ -
+