

<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://prophecyforum.com/bible-prophecy/mods/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://prophecyforum.com/bible-prophecy';	}
	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://prophecyforum.com/bible-prophecy/mods/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://prophecyforum.com/bible-prophecy/mods/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://prophecyforum.com/bible-prophecy';	}
	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://prophecyforum.com/bible-prophecy/mods/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":855,"date":"2018-06-11T01:30:24","date_gmt":"2018-06-11T06:30:24","guid":{"rendered":"http:\/\/prophecyforum.com\/bible-prophecy\/?page_id=855"},"modified":"2018-06-11T01:30:24","modified_gmt":"2018-06-11T06:30:24","slug":"user-request-form","status":"publish","type":"page","link":"https:\/\/prophecyforum.com\/bible-prophecy\/user-request-form\/","title":{"rendered":"User Request Form"},"content":{"rendered":"\n<script type=\"text\/javascript\">\n\n\t \n\t  \n\t function  gdprPDAClick()\n\t {\n\t\tdocument.getElementById(\"gdprmenu1\").style.display= \"block\";\n\t\tdocument.getElementById(\"gdprmenu2\").style.display= \"none\";  \n\t\tdocument.getElementById(\"gdprmenu3\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu4\").style.display= \"none\"; \n\t\t\n\t\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"#A9A9A9\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"white\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"white\";\n\t }\n\t function  gdprFMClick()\n\t {\n\t\tdocument.getElementById(\"gdprmenu1\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu2\").style.display= \"block\";  \n\t\tdocument.getElementById(\"gdprmenu3\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu4\").style.display= \"none\"; \n\t\t\n\t\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"#A9A9A9\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"white\";\n\t }\n\t function  gdprDRClick()\n\t {\n\t\tdocument.getElementById(\"gdprmenu1\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu2\").style.display= \"none\";  \n\t\tdocument.getElementById(\"gdprmenu3\").style.display= \"block\";\n\t\tdocument.getElementById(\"gdprmenu4\").style.display= \"none\"; \n\t\t\n\t\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"white\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"#A9A9A9\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"white\";\n\t\t\n\t\t\n\t }\n\t function  gdprURClick()\n\t {\n\t\tdocument.getElementById(\"gdprmenu1\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu2\").style.display= \"none\";  \n\t\tdocument.getElementById(\"gdprmenu3\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu4\").style.display= \"block\"; \n\t\t\n\t\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"white\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"#A9A9A9\";\n\t }\n<\/script>\n\n\n<div class=\"containerr-fluid\">\n<div class=\"gdpr-tab\">\n  <button class=\"active gdpr-tablinks\" id=\"gdprPDA\" onclick=\"gdprPDAClick()\">Data Access Request<\/button>\n  <button id=\"gdprFM\" class=\"gdpr-tablinks\" onclick=\"gdprFMClick()\">Forget Data Request<\/button>\n  <button id=\"gdprDR\" class=\"gdpr-tablinks\" onclick=\"gdprDRClick()\">Rectify Data Request<\/button>\n  \n   <button id=\"gdprUR\" class=\"gdpr-tablinks\" onclick=\"gdprURClick()\">Unsubscribe Request<\/button>\n<\/div>\n\n<div class=\"\">\n    \n    <div id=\"gdprmenu1\">\n      <div class=\"col-18\"><br>\n  <div class=\"gdprdefaults gdprpanel\">\n    <div class=\"gdpr-panel-heading\"><h4 style=\"color:white\">Data Access Request<\/h4><\/div>\n    <div class=\"gdpr-panel-body\">\n       <br\/>\n<div id=\"gdprpda\" class=\"form-group\">\n<form action=\"\" method=\"post\">\n<p>\n<b>Request a copy of the data we have about you. An email will be sent to you with the data after it\u2019s generated.<\/b><\/p>\n\n<label for=\"gdpremailpda\">Email:<\/label>\n<input type=\"email\" id=\"gdpremailpda\" class=\"gdprinp\" name=\"gdpremailpda\" value=\"\" required=\"\">\n<br>\n <div id=\"recap-container-4\"><table><tr><td><div data-recap=\"loader-round\" id=4 class=\"recap-loader-box\"><\/div><\/td><td><div class=\"notabot\">I am not a Bot<\/div><\/td><\/tr><\/table><\/div>\n\t <input type='hidden' name='wp_gdpr_nonce_field' value='0bf8705826'>\n <button type=\"submit\" name=\"gdprpdasubmit\" class=\"submitrequestbtn\" onclick=\"return checkUnlockStatCaptCha(4)\">Submit Request<\/button>\n\n<\/form>\n        \n<\/div>\n        \n    <\/div>\n  <\/div>\n<\/div>\n<\/div>\n<div id=\"gdprmenu2\">\n<div class=\"col-18\"><br>\n<div class=\"gdprdefaults gdprpanel\">\n<div class=\"gdpr-panel-heading\"><h4 style=\"color:white\">Forget Data Request<\/h4><\/div>\n<div class=\"gdpr-panel-body\">\n<div id=\"gdprfm\" class=\"Form Control\"> \n<form action=\"\" method=\"post\"><br>\n<p>\n<b>\nSelect what you wish to be forgotten. You\u2019ll be notified by email once it\u2019s done.\n<\/b><\/p>\n<label class=\"containerr\">\nComments\n<input type=\"checkbox\" name=\"gdprfmchkboxc\" value=\"c\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\n\nYour comments on various posts<br><br>\n<label class=\"containerr\">\n<b>Posts<\/b>\n<input type=\"checkbox\" name=\"gdprfmchkboxp\" value=\"p\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\nArticles & posts written by you\n<br><br>\n<label class=\"containerr\">\n<b>User Data<\/b>\n<input type=\"checkbox\" name=\"gdprfmchkboxu\" value=\"u\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\nYour user data recorded in database.\n<br>\n <label for=\"\">Email:<\/label>\n<input type=\"email\" class=\"gdprinp\" name=\"gdprfmemail\" value=\"\" required=\"\">\n<br>\n<!-- <label class=\"containerr\">\nI consent to my email being collected in order to process this request. See Privacy Policy page for more information.\n<input type=\"checkbox\" name=\"gdprchkbox\" value=\"1\" required=\"\">\n\n<span class=\"gdprcheckmark\"><\/span>\n<\/label> -->\n<br>\n<div id=\"recap-container-1\"><table><tr><td><div data-recap=\"loader-round\" id=1 class=\"recap-loader-box\"><\/div><\/td><td><div class=\"notabot\">I am not a Bot<\/div><\/td><\/tr><\/table><\/div>\n<br>\n<input type='hidden' name='wp_gdpr_nonce_field' value='0bf8705826'>\n <button type=\"submit\" name=\"gdprfmsubmit\" class=\"submitrequestbtn\" onclick=\"return checkUnlockStatCaptCha(1)\">Submit Request<\/button>  \n<\/form>\n<\/div> \n        \n    <\/div>\n  <\/div>\n<\/div>\n    <\/div>\n    <div id=\"gdprmenu3\">\n    <div id=\"gdprdr\" class=\"Form Control\">\n      <div class=\"col-18\"><br>\n  <div class=\"gdprdefaults gdprpanel\">\n    <div class=\"gdpr-panel-heading\"><h4 style=\"color:white\">Rectify Data Request<\/h4><\/div>\n    <div class=\"gdpr-panel-body\">\n   <div id=\"gdprdr\" class=\"Form Control\"> \n<form action=\"\" method=\"post\"><br>\n\n<label class=\"containerr\">\nComments\n<input type=\"checkbox\" name=\"gdprdrchkboxc\" value=\"c\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\n\nYour comments on various posts<br><br>\n<label class=\"containerr\">\n<b>Posts<\/b>\n<input type=\"checkbox\" name=\"gdprdrchkboxp\" value=\"p\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\nArticles & posts written by you\n<br><br>\n<label class=\"containerr\">\n<b>User Data<\/b>\n<input type=\"checkbox\" name=\"gdprdrchkboxu\" value=\"u\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\nYour user data recorded in database.<br>\n<label>\nWhat is to be rectified?<\/label>\n<textarea name=\"gdprrectification\" class=\"gdprinp\" rows=\"5\" required=\"\"><\/textarea>\n\n<label for=\"\">Email:<\/label>\n<input type=\"email\" class=\"gdprinp\" name=\"gdprdremail\" value=\"\" required=\"\">\n\n<br>\n<div id=\"recap-container-2\"><table><tr><td><div data-recap=\"loader-round\" id=2 class=\"recap-loader-box\"><\/div><\/td><td><div class=\"notabot\">I am not a Bot<\/div><\/td><\/tr><\/table><\/div>\n<br>\n<input type='hidden' name='wp_gdpr_nonce_field' value='0bf8705826'>\n<button type=\"submit\" name=\"gdprdrsubmit\" class=\"submitrequestbtn\" onclick=\"return checkUnlockStatCaptCha(2)\">Submit Request<\/button>\n\n<\/form>\n         <\/div> \n    <\/div>\n  <\/div>\n<\/div>\n<\/div>\n    <\/div>\n\t\n\t<div id=\"gdprmenu4\">\n    <div id=\"gdprur\" class=\"Form Control\">\n      <div class=\"col-18\"><br>\n  <div class=\"gdprdefaults gdprpanel\">\n    <div class=\"gdpr-panel-heading\"><h4 style=\"color:white\">Unsubscribe Request Form<\/h4><\/div>\n    <div class=\"gdpr-panel-body\">\n   <div id=\"gdprur\" class=\"Form Control\"> <br>\n   <div class=\"gdpr-alert\" style=\"color:black;\"><\/div>\n<form action=\"\" method=\"post\"><br\/>\n<label for=\"\">Name:<\/label>\n<input type=\"text\" id=\"\" class=\"gdprinp\" name=\"unsname\" value=\"\" required=\"\">\n<br>\n<label for=\"\">Email:<\/label>\n<input type=\"email\" id=\"\" class=\"gdprinp\" name=\"unsemail\" value=\"\" required=\"\">\n<br>\n <div id=\"recap-container-3\"><table><tr><td><div data-recap=\"loader-round\" id=3 class=\"recap-loader-box\"><\/div><\/td><td><div class=\"notabot\">I am not a Bot<\/div><\/td><\/tr><\/table><\/div>\n <br>\n <input type='hidden' name='wp_gdpr_nonce_field' value='0bf8705826'>\n <button type=\"submit\" name=\"gdprunssubmit\" class=\"submitrequestbtn\" onclick=\"return checkUnlockStatCaptCha(3)\">Submit Request<\/button>\n<\/form>\n<\/div>\n<\/div>\n        \n    <\/div>\n  <\/div>\n<\/div>\n<\/div>\n\t\n\t\n  <\/div>\n<\/div>\n<script type=\"text\/javascript\">\n  document.getElementById(\"gdprmenu2\").style.display= \"none\";  \n\tdocument.getElementById(\"gdprmenu3\").style.display= \"none\";\n\tdocument.getElementById(\"gdprmenu4\").style.display= \"none\";\n\t\n\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"#A9A9A9\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"white\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"white\";\n<\/script>\n<style>\n\/* Customize the label (the containerr) *\/\n.containerr {\n  display: block;\n  position: relative;\n  padding-left: 35px;\n  margin-bottom: 12px;\n  cursor: pointer;\n  \n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\/* Hide the browsers default checkbox *\/\n.containerr input {\n  position: absolute;\n  opacity: 0;\n  cursor: pointer;\n}\n\n\/* Create a custom checkbox *\/\n.gdprcheckmark {\n  position: absolute;\n  top: 0;\n  left: 0;\n  height: 25px;\n  width: 25px;\n  background-color: #eee;\n}\n\n\/* On mouse-over, add a grey background color *\/\n.containerr:hover input ~ .gdprcheckmark {\n  background-color: #ccc;\n}\n\n\/* When the checkbox is checked, add a blue background *\/\n.containerr input:checked ~ .gdprcheckmark {\n  background-color: #2196F3;\n}\n\n\/* Create the gdprcheckmark\/indicator (hidden when not checked) *\/\n.gdprcheckmark:after {\n  content: \"\";\n  position: absolute;\n  display: none;\n}\n\n\/* Show the gdprcheckmark when checked *\/\n.containerr input:checked ~ .gdprcheckmark:after {\n  display: block;\n}\n\n\/* Style the gdprcheckmark\/indicator *\/\n.containerr .gdprcheckmark:after {\n  left: 9px;\n  top: 5px;\n  width: 5px;\n  height: 10px;\n  border: solid white;\n  border-width: 0 3px 3px 0;\n  -webkit-transform: rotate(45deg);\n  -ms-transform: rotate(45deg);\n  transform: rotate(45deg);\n}\n\n.gdprpanel {\n    border-color: #525863;\n}\n.gdprpanel>.gdpr-panel-heading {\n    color: #fff;\n     background: linear-gradient(#525863, #444a55);\n    border-color: #525863;\n}\n\n.gdpr-panel-heading {\n  padding: 2px 10px;\n    border-bottom: 1px solid transparent;\n    border-top-left-radius: 3px;\n    border-top-right-radius: 3px;\n\n}\n\n.gdprdefaults {\n\n    margin-bottom: 20px;\n    background-color: #fff;\n    border: 1px solid transparent;\n    border-radius: 4px;\n    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);\n    box-shadow: 0 1px 1px rgba(0,0,0,.05);\n\n}\n\n.gdpr-gdpr-panel-body {\n  padding: 15px;\n}\n\ninput[type=email].gdprinp,input[type=text].gdprinp,textarea.gdprinp {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n    resize: vertical;\n}\n\n\/*Button Style  *\/\n.submitrequestbtn {\n    background-color: #008CBA; \/* Green *\/\n    border: none;\n    color: white;\n    padding: 10px 24px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 16px;\n    border-radius: 4px;\n\tmargin-top:10px;\n}\n\n\n\/* Style the tab *\/\n.gdpr-tab {\n    overflow: hidden;\n    border: 1px solid #ccc;\n    background-color: white;\n\n}\n\n\/* Style the buttons inside the tab *\/\n.gdpr-tab button {\n    background-color: inherit;\n    float: left;\n    border: none;\n    outline: none;\n    cursor: pointer;\n    padding: 14px 16px;\n    transition: 0.3s;\n    font-size: 17px;\n\tcolor:black;\n}\n\n\/* Change background color of buttons on hover *\/\n.gdpr-tab button:hover {\n    background-color: #ddd;\n}\n\n.gdpr-alert {\n    padding: 20px;\n    background-color: #f4debc;\n    color: white;\n    border-radius: 4px;\n\n}\n\/*e7d7bf*\/\n<\/style>\n\n\n\n<style>\ndiv[data-recap=loader-round]\n{\n\tcursor:pointer;\n}\n.recap-loader-box{\n  border: 6px solid #b3d9ff; \/* Light grey *\/\n  border-radius: 8%;\n  width: 30px;\n  height: 30px;\n  margin-top:10px;\n}\n.recap-loader-round{\n  border: 8px solid #f3f3f3; \/* Light grey *\/\n  border-top: 8px solid #3498db; \/* Blue *\/\n  border-radius: 50%;\n  width: 40px;\n  height: 40px;\n  animation: spin-captcharecaptcha 2s linear infinite;\n}\n\n@keyframes spin-captcharecaptcha {\n  0% { transform: rotate(0deg); }\n  100% { transform: rotate(360deg); }\n}\n.notabot\n{\n\tfont-size:20px;\n\tfont-weight:600;\n\topacity:0.5;\n\tmargin-left:5px;\n}\n.gdprpanel table {\n max-width:400px !important;\n border:0px !important;\n}\n\n<\/style>\n\n<script type=\"text\/javascript\">\nvar recapdiv=document.querySelectorAll(\"div[data-recap=loader-round]\");\nvar temppcurrentselected;\nvar recapblock=[];\nvar recapmousehovercount=0;\ndocument.body.onmousemove=function(){++recapmousehovercount;};\n    for(var i=0;i<recapdiv.length;i++)\n\t{\n\t\ttemppcurrentselected=recapdiv[i];\n\t\t\/\/alert(i);\n\t\trecapblock[i]=2;\n\t\trecapdiv[i].addEventListener('click',function(event){\n\t\tvar currentclickedid=event.target.id;\n\t\trecapblock[currentclickedid]=1;\n\t\tevent.target.classList.remove('recap-loader-box');\n        event.target.classList.add(\"recap-loader-round\");\n            if(recapmousehovercount>16)\n            {\n\t\t\tvar rand_time=((Math.random()*6)+2)*1000;\n\t\t\tvar t=setTimeout(function(){\t\t\t\t\n\t\t\tevent.target.innerHTML='<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:auto;height:100%;\" fill=\"#008000\" viewBox=\"0 0 24 24\"><path d=\"M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z\"\/><\/svg>';\n\t\t\tevent.target.classList.add('recap-loader-box');\n            event.target.classList.remove(\"recap-loader-round\");\n\t\t\trecapblock[currentclickedid]=0;\n\t\t\t\n\t\t\t},rand_time,event,recapblock[currentclickedid]);\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tcaptchaBoxDisplay(currentclickedid);\n\t\t\t}\n \t\t\n\t\t});\n\t}\n\tfunction capRecapCreateCookie(cname, cvalue) {\n\tvar d = new Date();\n\td.setTime(d.getTime() + (60*60*2000));\n\tvar expires = \"expires=\"+ d.toUTCString();\n\tdocument.cookie = cname + \"=\" + cvalue + \";\" + expires + \";path=\/\";\n\t}\n    function capRecapGetCookie(cname) {\n  var name = cname + \"=\";\n  var decodedCookie = decodeURIComponent(document.cookie);\n  var ca = decodedCookie.split(';');\n  for(var i = 0; i <ca.length; i++) {\n    var c = ca[i];\n    while (c.charAt(0) == ' ') {\n      c = c.substring(1);\n    }\n    if (c.indexOf(name) == 0) {\n      return c.substring(name.length, c.length);\n    }\n  }\n  return \"\";\n}\nfunction captchaBoxDisplay(idd)\n\t{\n\t\tvar text = \"\";\n        var possible = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\";\nfor (var i = 0; i < 5; i++)\n         {text += possible.charAt(Math.floor(Math.random() * possible.length));}\n\t\tcapRecapCreateCookie('caprecapcookie'+idd,text);\n\t\tvar boximg=\"<table><tr><td><img src='https:\/\/prophecyforum.com\/bible-prophecy\/mods\/wpgdpr_g8zuDP\/img\/img.php?otp=\"+text+\"' style='height:30px;'><\/td>\";\n\t\tvar boxtext=\"<td><input id='captchatextinput\"+idd+\"' type='text' style='height:30px;' placeholder='Write the text here'><\/td><\/tr><\/table>\";\n\t\tdocument.getElementById(\"recap-container-\"+idd).innerHTML=boximg+boxtext;\n\t}\n\tfunction captchaRecaptchaMatchCookie(idd)\n\t{\n\t\ttry\n\t\t{\n\t\tvar val=document.getElementById(\"captchatextinput\"+idd).value;\n\t\ttry\n\t\t{\n\t\t\tvar saved=capRecapGetCookie('caprecapcookie'+idd);\n\t\t\tif(saved ==val)\n\t\t\t{\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tcaptchaBoxDisplay(idd);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\tcatch(err)\n\t\t{return false;}\n\t\t}\n\t\tcatch(err)\n\t\t{return 'nobox';}\n\t}\n\tfunction checkUnlockStatCaptCha(idd)\n\t{\n\t\tif(captchaRecaptchaMatchCookie(idd)=='nobox')\n\t\t{\n\t\t\tif(recapblock[idd]==0)\n\t\t\t{\n\t\t\treturn true;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tif(recapblock[idd]==1){captchaBoxDisplay(idd);}\n\t\t\trecapblock[idd]=2;\n\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn captchaRecaptchaMatchCookie(idd);\n\t\t}\n\t}\t\n<\/script>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_s2mail":"","jetpack_post_was_ever_published":false,"iawp_total_views":39,"footnotes":""},"class_list":["post-855","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>User Request Form<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prophecyforum.com\/bible-prophecy\/user-request-form\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"User Request Form\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prophecyforum.com\/bible-prophecy\/user-request-form\/\" \/>\n<meta property=\"og:site_name\" content=\"Prophecy Forum\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/user-request-form\\\/\",\"url\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/user-request-form\\\/\",\"name\":\"User Request Form\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#website\"},\"datePublished\":\"2018-06-11T06:30:24+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/user-request-form\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#website\",\"url\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/\",\"name\":\"Prophecy Forum\",\"description\":\"Bible prophecy and current events from a biblical perspective.\",\"publisher\":{\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#\\\/schema\\\/person\\\/47f3ad622aac024723558ad57071bfd3\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#\\\/schema\\\/person\\\/47f3ad622aac024723558ad57071bfd3\",\"name\":\"nexxus\",\"logo\":{\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#\\\/schema\\\/person\\\/image\\\/\"},\"description\":\"Rev. Larry W. Cockerham is best known for his prophetical teaching ministry based on the inspiration and authority of the Bible. The foundation of his ministry is helping others understand the Scriptures as they relate to the \\\"blessed hope\\\" (Tit. 2:13). Bro. Larry graduated from Andersonville Baptist Seminary with a Master of Theology degree. He has been teaching and preaching Bible prophecy, typology and related studies in churches for over forty-one years. He has written one book: Revelation: Prophetic Addresses to the Seven Churches, Vol. 1, The Rapture, and Ten Major Signs of the Lord's Return in Our Generation. He has listed over 40 books on Amazon, including novels, puzzle books, coloring books and other items. Larry is also listed in the Who's Who in Bible Prophecy and Top 100 End-Times Prophecy Teachers.\",\"sameAs\":[\"http:\\\/\\\/www.prophecyforum.com\",\"https:\\\/\\\/x.com\\\/larrywcockerham\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"User Request Form","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/prophecyforum.com\/bible-prophecy\/user-request-form\/","og_locale":"en_US","og_type":"article","og_title":"User Request Form","og_url":"https:\/\/prophecyforum.com\/bible-prophecy\/user-request-form\/","og_site_name":"Prophecy Forum","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/prophecyforum.com\/bible-prophecy\/user-request-form\/","url":"https:\/\/prophecyforum.com\/bible-prophecy\/user-request-form\/","name":"User Request Form","isPartOf":{"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#website"},"datePublished":"2018-06-11T06:30:24+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prophecyforum.com\/bible-prophecy\/user-request-form\/"]}]},{"@type":"WebSite","@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#website","url":"https:\/\/prophecyforum.com\/bible-prophecy\/","name":"Prophecy Forum","description":"Bible prophecy and current events from a biblical perspective.","publisher":{"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#\/schema\/person\/47f3ad622aac024723558ad57071bfd3"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/prophecyforum.com\/bible-prophecy\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#\/schema\/person\/47f3ad622aac024723558ad57071bfd3","name":"nexxus","logo":{"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#\/schema\/person\/image\/"},"description":"Rev. Larry W. Cockerham is best known for his prophetical teaching ministry based on the inspiration and authority of the Bible. The foundation of his ministry is helping others understand the Scriptures as they relate to the \"blessed hope\" (Tit. 2:13). Bro. Larry graduated from Andersonville Baptist Seminary with a Master of Theology degree. He has been teaching and preaching Bible prophecy, typology and related studies in churches for over forty-one years. He has written one book: Revelation: Prophetic Addresses to the Seven Churches, Vol. 1, The Rapture, and Ten Major Signs of the Lord's Return in Our Generation. He has listed over 40 books on Amazon, including novels, puzzle books, coloring books and other items. Larry is also listed in the Who's Who in Bible Prophecy and Top 100 End-Times Prophecy Teachers.","sameAs":["http:\/\/www.prophecyforum.com","https:\/\/x.com\/larrywcockerham"]}]}},"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":846,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/copyright\/","url_meta":{"origin":855,"position":0},"title":"Copyright","author":"nexxus","date":"June 11, 2018","format":false,"excerpt":"Copyright This website \"www.prophecyforum.com\" and its content is copyright of Prophecy Forum Ministries - \u00a9 Prophecy Forum Ministries 2018. All rights reserved. Any redistribution or reproduction of part or all of the contents in any form is prohibited other than the following: You may print or download to a local\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":844,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/privacy-policy\/","url_meta":{"origin":855,"position":1},"title":"Privacy Policy","author":"nexxus","date":"June 11, 2018","format":false,"excerpt":"This privacy policy sets out how Prophecy Forum Ministries uses and protects any information that you give Prophecy Forum Ministries when you use this website. Prophecy Forum Ministries is committed to ensuring that your privacy is protected. Should we ask you to provide certain information by which you can be\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1500,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/anti-spam-policy\/","url_meta":{"origin":855,"position":2},"title":"Anti-Spam Policy","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the Anti-Spam Policy for our Prophecy Forum website. What Is Spam? Spam is unsolicited email, also known as junk mail (received via email), or UCE (Unsolicited Commercial Email). Virtually all of us have opened the inbox of an email account and found emails from an unknown sender.\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1506,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/ftc-compliance\/","url_meta":{"origin":855,"position":3},"title":"FTC Compliance","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the Federal Trade Commission Compliance for our Prophecy Forum website. We make every effort at candor regarding any products or services we use, recommend, or otherwise make mention of at Prophecy Forum. We strive to clearly differentiate between our own products or services versus those of third\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1502,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/dmca-compliance\/","url_meta":{"origin":855,"position":4},"title":"DMCA Compliance","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the DMCA Compliance for our Prophecy Forum website. We at Prophecy Forum are committed to responding to any alleged copyright violations, should they occur. Notice of any alleged violation should take the form proposed by the U.S. Digital Millennium Copyright Act as revealed at http:\/\/www.copyright.gov. Remedy If\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":845,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/","url_meta":{"origin":855,"position":5},"title":"Terms of Service","author":"nexxus","date":"June 11, 2018","format":false,"excerpt":"Welcome to Prophecy Forum. If you continue to browse and use this website, you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern Prophecy Forum Ministries's relationship with you in relation to this website. If you\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/pages\/855","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/comments?post=855"}],"version-history":[{"count":0,"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/pages\/855\/revisions"}],"wp:attachment":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/media?parent=855"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}