Registration & Next Steps

Next Steps:

  • Attend all 3 Pre-Encounter online meetings.  (The link will be sent to your email address)

OR

  • listen to all 3 pre-Encounter recordings that will be made available to you.
  • If you are unable to attend any of the scheduled online Pre-Encounter meetings then please contact us as soon as possible.
  • Come expecting to have a fresh encounter with Jesus!
  • Commit to the entire weekend .
  •       Be open to:
    • Knowing that God loves you and wants you free to enjoy His presence;
    • Having a humble, soft and teachable heart;
    • Be loving and not be negative or have a critical spirit
    • The move of the Holy Spirit in your life;
    • The breaking of strongholds in your life.
    • Focusing on what is being presented to you;
    • Abstaining from all worldly entertainment (radio, television, social media etc.)

Note:

Prior to the Encounter, we encourage candidates to couple  focused prayer with 1 -3 days of fasting for maximum results. (Please note this is not mandatory, just do what you safely can.)

 

 

document.addEventListener("DOMContentLoaded", function () { const form = document.getElementById("mantleQuiz"); if (!form) return; form.addEventListener("submit", function (e) { e.preventDefault(); let revivalistScore = 0; let movementBuilderScore = 0; let nextGenScore = 0; const answers = [ form.q1.value, form.q2.value, form.q3.value, form.q4.value, form.q5.value ]; answers.forEach(function (value) { value = value.toLowerCase(); if (value.includes("revivalist") && !value.includes("nextgen")) { revivalistScore++; } else if (value.includes("movement")) { movementBuilderScore++; } else if (value.includes("nextgen")) { nextGenScore++; } }); document.getElementById("revivalistResult")?.classList.add("hidden"); document.getElementById("movementBuilderResult")?.classList.add("hidden"); document.getElementById("nextGenResult")?.classList.add("hidden"); const max = Math.max(revivalistScore, movementBuilderScore, nextGenScore); let resultBlock = null; if (max === revivalistScore) { resultBlock = document.getElementById("revivalistResult"); } else if (max === movementBuilderScore) { resultBlock = document.getElementById("movementBuilderResult"); } else if (max === nextGenScore) { resultBlock = document.getElementById("nextGenResult"); } if (resultBlock) { resultBlock.classList.remove("hidden"); resultBlock.scrollIntoView({ behavior: "smooth" }); } }); });