8 lines
291 B
JavaScript
8 lines
291 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>'
|
|
}
|
|
}
|