

<script type="text/javascript">
  // Function for set the cookie for days
  function tekGdprSetCookie(cname, cvalue, exdays) { //create js cookie
    var d = new Date();
    d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
    var expires = "expires=" + d.toUTCString();
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
  }
  function sendTheDatatandc()
  {
	var formId = document.getElementById('TandC_Data');
	if(document.querySelector('#t-and-c--checkbox:checked')!==null) {
    	var set = 2;
    	var postData = $('#TandC_Data').serialize()+'&gdpraccepttandc=submit';
    	var xhttp = new XMLHttpRequest();
    	xhttp.onreadystatechange = function() {
    	  if (this.readyState == 4 && this.status == 200) {
    	    set = this.responseText;
    	  }
    	};
    	xhttp.open("POST", "https://sthelenscatenians.co.uk/development/wp-content/plugins/wpgdpr_g8zuDP/update.php", true);
    	xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    	xhttp.send(postData);
		tekGdprSetCookie('WP-GDPR-Compliance-tandc','1.0',3650);

		window.location='https://sthelenscatenians.co.uk/development';	}
	else {
		alert("Please check the checkbox");
	}
  }
  // Hit the file update.php to work it without refresh with XMLHttp
  function gdrpSetCookie(name, cookieName) { //ajax and js cookie function call
    var set = 2;
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
      if (this.readyState == 4 && this.status == 200) {
        set = this.responseText;
      }
    };

    xhttp.open("POST", "https://sthelenscatenians.co.uk/development/wp-content/plugins/wpgdpr_g8zuDP/update.php", true);
    xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xhttp.send(name);
  }

  // Function to check the cookie exist or not
  function getGdprCookieCookie(name) {
    var value = "; " + document.cookie;
    var parts = value.split("; " + name + "=");
    if (parts.length == 2) {
      return parts.pop().split(";").shift();
    } else {
      return null;
    }
  }
 // get cookie value
  function getCookie(cname) {
  let name = cname + "=";
  let decodedCookie = decodeURIComponent(document.cookie);
  let ca = decodedCookie.split(';');
  for(let i = 0; i <ca.length; i++) {
    let c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

</script>

	<script type="text/javascript">
  // Function for set the cookie for days
  function tekGdprSetCookie(cname, cvalue, exdays) { //create js cookie
    var d = new Date();
    d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
    var expires = "expires=" + d.toUTCString();
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
  }
  function sendTheDatapp()
  {
	var formId = document.getElementById('privacyPolicyData');
	if(document.querySelector('#provicy-policy--checkbox:checked')!==null) {
		var set = 2;
		var postData = $('#privacyPolicyData').serialize()+'&gdpracceptpp=submit';
		var xhttp = new XMLHttpRequest();
		xhttp.onreadystatechange = function() {
			if (this.readyState == 4 && this.status == 200) {
				set = this.responseText;
			}
    	};
    	xhttp.open("POST", "https://sthelenscatenians.co.uk/development/wp-content/plugins/wpgdpr_g8zuDP/update.php", true);
    	xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    	xhttp.send(postData);
		tekGdprSetCookie('WP-GDPR-Compliance-pp','1.0',3650);

		window.location='https://sthelenscatenians.co.uk/development';	}
	else {
		alert("Please check the checkbox");
	}
  }
  // Hit the file update.php to work it without refresh with XMLHttp
  function gdrpSetCookie(name, cookieName) { //ajax and js cookie function call
    var set = 2;
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
      if (this.readyState == 4 && this.status == 200) {
        set = this.responseText;
      }
    };
    // var postdata = 
    xhttp.open("POST", "https://sthelenscatenians.co.uk/development/wp-content/plugins/wpgdpr_g8zuDP/update.php", true);
    xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xhttp.send(name);
  }

  // Function to check the cookie exist or not
  function getGdprCookieCookie(name) {
    var value = "; " + document.cookie;
    var parts = value.split("; " + name + "=");
    if (parts.length == 2) {
      return parts.pop().split(";").shift();
    } else {
      return null;
    }
  }
 // get cookie value
  function getCookie(cname) {
  let name = cname + "=";
  let decodedCookie = decodeURIComponent(document.cookie);
  let ca = decodedCookie.split(';');
  for(let i = 0; i <ca.length; i++) {
    let c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

</script>
<style>
/* Customize the label (the containerr) */
.containerr {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default checkbox */
  .containerr input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }

  /* On mouse-over, add a grey background color */
  .containerr:hover input~.checkmark {
    background-color: #ccc;
  }

  /* When the checkbox is checked, add a blue background */
  .containerr input:checked~.checkmark {
    background-color: #2196F3;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the checkmark when checked */
  .containerr input:checked~.checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .containerr .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /*Row arrangement for status */
  .checkbx {
    width: 5%;
    padding-left: 0;
  }

  .yesbadge {
    padding: 10px;
    border: 0px;
    background-color: #38B677;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .yesicons {
    font-size: 18px;
    border-radius: 100%;
    color: #fff;
  }

  .noicons {
    font-size: 18px;
    border-radius: 100%;
    color: #fff;
  }

  .nobadge {
    padding: 10px;
    border: 0px;
    background-color: #FE5253;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .statusnobadge {
    padding: 10px;
    border: 0px;
    background-color: #e4dddd;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .statusyesbadge {
    padding: 10px;
    border: 0px;
    background-color: #e4dddd;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .textblock {
    padding: 10px;
    padding-right: 0px;
    background-color: #FBFBFB;
    border: 1px solid #E6E6E6;
  }

  .statusnoicons {
    font-size: 18px;
    border-radius: 100%;
    color: red;
  }

  .statusyesicons {
    font-size: 18px;
    border-radius: 100%;
    color: #38B677;
  }

  .statusnotextblock {
    padding: 10px;
    padding-right: 0px;
    color: red;
    font-weight: 700;
  }

  .statusyestextblock {
    padding: 10px;
    padding-right: 0px;
    color: #38B677;
    font-weight: 700;
  }
/* CSS */
.button-13 {
  background-color: #fff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: "Amazon Ember",sans-serif;
  font-size: 13px;
  line-height: 29px;
  padding: 0 10px 0 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: 100px;
}

.button-13:hover {
  background-color: #f7fafa;
}

.button-13:focus {
  border-color: #008296;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  outline: 0;
}
</style>
<script type="text/javascript">
	function gdprdrAction() {
		var cnfmsgdrect = "Are you sure you want to delete this";
		var conf = confirm(cnfmsgdrect);
		if (conf == true) {
			return true;
		} else {
			return false;
		}
	}
</script>
{"id":1713,"date":"2015-07-08T10:27:00","date_gmt":"2015-07-08T10:27:00","guid":{"rendered":"https:\/\/sthelenscatenians.co.uk\/development\/?page_id=1713"},"modified":"2018-05-23T08:59:11","modified_gmt":"2018-05-23T08:59:11","slug":"terms-of-use","status":"publish","type":"page","link":"https:\/\/sthelenscatenians.co.uk\/development\/terms-of-use\/","title":{"rendered":"Terms of Use"},"content":{"rendered":"<p>\n\t<form action='' id='TandC_Data' method='post'><input type='hidden' value='1' name='gdprnlgtandc'>\n\t<label class='containerr'>\n\tI accept the terms and conditions as laid out in the Terms & Conditions.\n\t<input type='checkbox' id='t-and-c--checkbox' required>\n\t<span class='checkmark'><\/span>\n\t<\/label>\n\t<input type='button' value='Accept It' name='gdpraccepttandc' class='gdpracceptbutton button-13' onclick='sendTheDatatandc()'>\n\t<\/form>\n\t<\/p>\n<p>By accessing this Site, you are agreeing to be bound by these Terms and Conditions of Use, all applicable laws and regulations, and agree that you are responsible for compliance with any applicable local laws. If you do not agree with any of these terms, you should not access or use this Site. The materials contained in this Site are protected by applicable copyright and trade mark law.<\/p>\n<p><strong>Intellectual Property Rights<\/strong><\/p>\n<p>All copyrights, trademarks, patents and other intellectual property rights in and on our Site and all content and software located on the Site shall remain the sole property of this Catenian Circle Site.<\/p>\n<p><strong>Acceptable Use<\/strong><\/p>\n<p>You agree to use our Site only for lawful purposes, and in a way that does not infringe the rights of, restrict or inhibit anyone else&#8217;s use and enjoyment of the Site.<\/p>\n<p><strong>Restricted Access<\/strong><\/p>\n<p>We may in the future need to restrict access to parts (or all) of our Site and reserve full rights to do so. If, at any point, we provide you with a username and password for you to access restricted areas of our Site, you must ensure that both your username and password are confidential.<\/p>\n<p><strong>Revisions<\/strong><\/p>\n<p>This Site may change these terms from time to time and so you should check these terms regularly. Your continued use of our Site will be deemed acceptance of the updated or amended terms. If you do not agree to the changes, please cease using our Site immediately.<\/p>\n<p>If any of these terms are determined to be illegal, invalid or otherwise unenforceable, it shall be severed and deleted from these terms and the remaining terms shall survive and continue to be binding and enforceable.<\/p>\n<p><strong>Limitation of Liability<\/strong><\/p>\n<p>THE MATERIALS AT THIS SITE ARE PROVIDED &#8220;AS IS&#8221; WITHOUT ANY EXPRESS OR IMPLIED WARRANTY OF ANY KIND INCLUDING WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT OF INTELLECTUAL PROPERTY, OR FITNESS FOR ANY PARTICULAR PURPOSE. IN NO EVENT SHALL THE CATENIAN CIRCLE, THE WEBMASTER OR ITS OFFICERS BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, BUSINESS INTERRUPTION, LOSS OF INFORMATION, INJURY OR DEATH) ARISING OUT OF THE USE OF OR INABILITY TO USE SUCH MATERIALS, EVEN IF THE SITE TEAM HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGES THROUGH THE CONTACT FORM AVAILABLE ON THIS SITE.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By accessing this Site, you are agreeing to be bound by these Terms and Conditions of Use, all applicable laws and regulations, and agree that you are responsible for compliance with any applicable local laws. If you do not agree with any of these terms, you should not access or use this Site. The materials<br \/><a class=\"moretag\" href=\"https:\/\/sthelenscatenians.co.uk\/development\/terms-of-use\/\">+ Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1713","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/pages\/1713","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/comments?post=1713"}],"version-history":[{"count":0,"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/pages\/1713\/revisions"}],"wp:attachment":[{"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/media?parent=1713"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}