

<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":55,"date":"2018-05-22T13:55:22","date_gmt":"2018-05-22T13:55:22","guid":{"rendered":"https:\/\/sthelenscatenians.co.uk\/development\/?page_id=55"},"modified":"2018-05-23T09:00:41","modified_gmt":"2018-05-23T09:00:41","slug":"gdpr-privacy-policy","status":"publish","type":"page","link":"https:\/\/sthelenscatenians.co.uk\/development\/gdpr-privacy-policy\/","title":{"rendered":"GDPR Privacy Policy"},"content":{"rendered":"<p>[last-modified]<br \/>\n<p id='hide-privacy-policyb'>\n\t\t<div>\n\t\t\t<form id='privacyPolicyData' action='' method='post'><input type='hidden' value='1' name='gdprnlgpp'>\n\t\t\t\t<label class='containerr accept_container'>\n\t\t\t\t\tI have reviewed the Privacy Policy and I give my consent to the terms laid out.\n\t\t\t\t<input type='checkbox' id='provicy-policy--checkbox' required>\n\t\t\t\t<span class='checkmark'><\/span><\/label>\n\t\t\t\t<input type='button' class='gdpracceptbutton button-13'  value='Accept It' name='gdpracceptpp' onclick='sendTheDatapp()'>\n\t\t\t<\/form>\n\t\t<\/div>\n\t\t<\/p>\n\t\t<\/p>\n<p><strong><u>GDPR Compliant Privacy Policy Version 1.0<\/u><\/strong><\/p>\n<p>This Site is committed to safeguarding your privacy. Contact us at askrose [at] live.co.uk if you have any questions about this Site and data and we will be happy to assist you.<\/p>\n<p>By using this site, you consent to the processing of data as described in this Privacy Policy.<\/p>\n<p>By accessing and browsing this Site, we imply that you agree to this privacy policy and our terms and conditions.<\/p>\n<p>This Privacy Policy is a part of our Terms and Conditions; by agreeing to our Terms and Conditions you also agree to this Policy. In the event of collision of terms used in Terms and Conditions and Privacy Policy, the latter shall prevail.<\/p>\n<p><strong>Table of Contents<\/strong><\/p>\n<ol>\n<li><a href=\"#gdpr-definitions\">Definitions used in this Policy<\/a><\/li>\n<li><a href=\"#gdpr-principles\">Data protection principles we follow<\/a><\/li>\n<li><a href=\"#gdpr-rights\">What rights do you have regarding your Personal Data<\/a><\/li>\n<li><a href=\"#gdpr-information\">What Personal Data we gather about you<\/a><\/li>\n<li><a href=\"#gdpr-processing\">How we use your Personal Data<\/a><\/li>\n<li><a href=\"#gdpr-sharing\">Who else has access to your Personal Data<\/a><\/li>\n<li><a href=\"#gdpr-security\">How we secure your data<\/a><\/li>\n<li><a href=\"#gdpr-cookies\">Information about cookies<\/a><\/li>\n<li><a href=\"#gdpr-contact\">Contact information<\/a><\/li>\n<\/ol>\n<p><strong>Definitions<\/strong><\/p>\n<p><strong>Personal Data<\/strong>\u00c2\u00a0\u00e2\u20ac\u201c any information relating to an identified or identifiable natural person.<br \/>\n<strong>Processing<\/strong>\u00c2\u00a0\u00e2\u20ac\u201c any operation or set of operations which is performed on Personal Data or on sets of Personal Data.<br \/>\n<strong>Data subject<\/strong>\u00c2\u00a0&#8211; a natural person whose Personal Data is being Processed.<br \/>\n<strong>Child<\/strong> -\u00c2\u00a0a natural person under 16 years of age.<br \/>\n<strong>We\/us<\/strong> (either capitalized or not)\u00c2\u00a0\u00e2\u20ac\u201c This Site owned by Gerry Rose Services<\/p>\n<p><strong>Data Protection Principles<\/strong><\/p>\n<p>We promise to follow the following data protection principles:<\/p>\n<ul>\n<li>Processing is lawful, fair, transparent. Our Processing activities have lawful grounds. We always consider your rights before processing data. We will provide information regarding processing upon request.<\/li>\n<li>Processing is limited to the purpose. We have no process in place on this Site whereby we need to collect any personal data, other than the data of our administrators which we collect for security and communication purposes.<\/li>\n<li>Processing is done with minimal data. We only gather and Process the minimal amount of Personal Data required for any purpose.<\/li>\n<li>Processing is limited within a time period. We will not store administrator personal data for longer than needed.<\/li>\n<li>We will do our best to ensure the accuracy of data.<\/li>\n<li>We will do our best to ensure the integrity and confidentiality of data.<\/li>\n<\/ul>\n<p><strong>Data Subject&#8217;s rights<\/strong><\/p>\n<p>The Data Subject has the following rights:<\/p>\n<ol>\n<li>Right to information\u00c2\u00a0\u00e2\u20ac\u201c meaning you have to right to know whether your Personal Data is being processed; what data is gathered, from where it is obtained and why and by whom it is processed.<\/li>\n<li>Right to access\u00c2\u00a0\u00e2\u20ac\u201c meaning you have the right to access the data collected from\/about you. This includes your right to request and obtain a copy of your Personal Data gathered.<\/li>\n<li>Right to rectification\u00c2\u00a0\u00e2\u20ac\u201c meaning you have the right to request rectification or erasure of your Personal Data that is inaccurate or incomplete.<\/li>\n<li>Right to erasure \u00e2\u20ac\u201c meaning in certain circumstances you can request for your Personal Data to be erased from our records.<\/li>\n<li>Right to restrict processing \u00e2\u20ac\u201c meaning\u00c2\u00a0where certain conditions apply, you have the right to restrict the Processing of your Personal Data.<\/li>\n<li>Right to object to processing\u00c2\u00a0\u00e2\u20ac\u201c meaning in certain cases you have the right to object to Processing of your Personal Data, for example in the case of direct marketing.<\/li>\n<li>Right to object to automated Processing\u00c2\u00a0\u00e2\u20ac\u201c meaning you have the right to object to automated Processing, including profiling; and not to be subject to a decision based solely on automated Processing. This right you can exercise whenever there is an outcome of the profiling that produces legal effects concerning or significantly affecting you.<\/li>\n<li>Right to data portability\u00c2\u00a0\u00e2\u20ac\u201c you have the right to obtain your Personal Data in a machine-readable format or if it is feasible, as a direct transfer from one Processor to another.<\/li>\n<li>Right to lodge a complaint\u00c2\u00a0\u00e2\u20ac\u201c in the event that we refuse your request under the Rights of Access, we will provide you with a reason as to why. If you are not satisfied with the way your request has been handled please contact us.<\/li>\n<li>Right for the help of\u00c2\u00a0<a href=\"http:\/\/www.ico.org.uk\">supervisory authority<\/a>\u00c2\u00a0\u00e2\u20ac\u201c meaning you have the right for the help of a supervisory authority and the right for other legal remedies such as claiming damages.<\/li>\n<li>Right to withdraw consent\u00c2\u00a0\u00e2\u20ac\u201c you have the right withdraw any given consent for Processing of your Personal Data.<\/li>\n<\/ol>\n<p><strong>Data we might gather on this Site<\/strong><\/p>\n<p><strong>Information you have given to us<\/strong><br \/>\nThis might be your name or e-mail address if you are an administrator on this Site. We might save the information you provide us with but, if we do this, we will make this explicit to you and you will have the option to opt in or opt out to save your information on this Site.<\/p>\n<p><strong>Information automatically collected about you<\/strong><br \/>\nThis includes information that is automatically stored by functional and necessary cookies and other session tools that run in the background of this Site. For example your IP address (which is anonymised in our statistics) and pages you have visited on the website and how long you remain there and what country you are from. This information improves visitor experience.<\/p>\n<p><strong>How we use your Personal Data-<\/strong>We use data to enhance visitor experience or for administrator logins and the security of this Site. On this website, we aim to anonymise personal data such as IP addresses and we do this using the WP Statistics plugin.<\/p>\n<p><strong>Who else can access your Personal Data<\/strong><\/p>\n<p>We do not share your Personal Data with strangers. Third party cookies (which are not under our control) for example You Tube, Facebook or Google Maps cookies may obtain user data (please refer to their Privacy policies ) you can control these cookies and block or delete them through your browser settings.<\/p>\n<p>We also reserve the right to disclose personal data to third parties or public officials when we are legally obliged to do so and in the event of unauthorised or criminal activities.<\/p>\n<p><strong>How we secure your data<\/strong><\/p>\n<p>We do our best to keep your personal data safe and anonymise our analytics data. We use safe protocols for communication and transferring data (such as HTTPS encryption). We monitor our systems for possible vulnerabilities and attacks and install stringent security plugins that are updated regularly.<\/p>\n<p>Even though we try our best we cannot guarantee the security of information. However, we promise to notify suitable authorities of data breaches. We will also notify you if there is a threat to your rights or interests. We will do everything we reasonably can to prevent security breaches and to assist authorities should any breaches occur.<\/p>\n<p><strong>Children-<\/strong>We do not intend to collect or knowingly collect information from children on this Site.<\/p>\n<p><strong>Contact Information<\/strong><\/p>\n<p><strong>UK Supervisory Authority Information<\/strong><\/p>\n<p>www.ico.org.uk<br \/>\nEmail: <a href=\"mailto:registration@ico.org.uk\">registration@ico.org.uk<\/a><br \/>\nPhone: 0303 123 1113<\/p>\n<p><strong>Changes to this Privacy Policy<\/strong><\/p>\n<p>We reserve the right to make change to this Privacy Policy at any time.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[last-modified] GDPR Compliant Privacy Policy Version 1.0 This Site is committed to safeguarding your privacy. Contact us at askrose [at] live.co.uk if you have any questions about this Site and data and we will be happy to assist you. By using this site, you consent to the processing of data as described in this Privacy<br \/><a class=\"moretag\" href=\"https:\/\/sthelenscatenians.co.uk\/development\/gdpr-privacy-policy\/\">+ 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-55","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/pages\/55","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=55"}],"version-history":[{"count":0,"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/pages\/55\/revisions"}],"wp:attachment":[{"href":"https:\/\/sthelenscatenians.co.uk\/development\/wp-json\/wp\/v2\/media?parent=55"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}