goldis
4/18/2018 - 8:54 AM

Add Privacy Policy

<script>
jQuery(document).ready(function ($) {
   (function changeTextRegForm () {
	var reg_form = $('#reg_form');
	var termsConditions = '<a href="/company/terms-and-conditions/">Terms &amp; Conditions</a>';
	var privacyPolicy = '<a href="/company/privacy-policy/">Privacy Policy</a>';
	var text = 'I am over 18 years of age and I accept the '+ termsConditions +' and ' + privacyPolicy;
	reg_form.find("label[for*='registration-accept']").html(text);
   })()
});
</script>