diff --git a/layouts/index.html b/layouts/index.html index b1cd3cf..3bd3cd6 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -23,14 +23,14 @@
Securing today - + for your tomorrow

- Securing you should be invisible and automagically mitigate security incidents. + Securing you should be invisible and automagically mitigate security threats. No technical mumbo-jumbo required.

diff --git a/static/js/custom.js b/static/js/custom.js index eb255ee..da60854 100644 --- a/static/js/custom.js +++ b/static/js/custom.js @@ -50,4 +50,14 @@ function onSubmitCaptcha(captchaToken) .catch(function(err){ invalidContactSubmit(err); }); -} \ No newline at end of file +} + +function checkTweakers() +{ + if (location.pathname !== '/') { return; } + + const urlParams = new URLSearchParams(window.location.search); + if (! urlParams.has('orig') || urlParams.get('orig') !== 'tweakers') { return; } + + $('#txtSubtext').text('like a cyber Tweaker.'); +}; checkTweakers(); \ No newline at end of file