3
0
2022-04-28 19:25:00 +01:00

10 lines
315 B
JavaScript

document.onload = function () {
const privacyPolicy = document.getElementById('privacy-policy');
if (privacyPolicy) {
privacyPolicy.innerHTML = '<span>By signing up you agree to the TheGardenPrivacy Policy <a href="https://thegarden.rocks/privacy/">Privacy Policy</a></span>'
}
}
alert('Test Message');