This is my declaration:
I am me, myself, Sovereign. I do hereby redeem and proclaim my Sovereignty, which is my birthright; and
for the purposes of Article 9 of the European Convention on Human Rights, I am a member of mankind having God within*; and
I, a Sovereign, do proclaim that Shetland shall not be subject to influences which do not have our interests at heart; and
I, a Sovereign of Shetland, declare that the land I own, including my body, is mine alone, with no lord or superior, and nobody has rights over it except me.
I, a Sovereign of Shetland, do not consent to being subject to any Scottish or UK legislation unless it can be conclusively proved that Shetland is part of Scotland; and
I accept the rights and duties of a sovereign and undertake to abide by the law: "Do no harm and honour your contracts."
*Article 9 concerns religious rights. While having no organised religious affiliations, we recognise Ephesians 4:6 "One God, Father of all, who is above all, through all and in you all" as the basis of a religious belief for the purposes of Article 9.
window.location.href = 'https://www.sovereignshetland.com/shetlandpay/';";
} else {
// Error handling if the email fails to send
echo "There was an issue with the form submission. Please try again.";
}
}
?>
// Function to validate that both Email and Re-type Email match
function checkEmailsMatch() {
var email = document.getElementById("email").value;
var retypeEmail = document.getElementById("retype-email").value;
var errorMessage = document.getElementById("email-match-error");
if (email !== retypeEmail) {
document.getElementById("retype-email").setCustomValidity("Emails do not match");
errorMessage.style.display = "inline"; // Show the error message
} else {
document.getElementById("retype-email").setCustomValidity(""); // Clear custom validity
errorMessage.style.display = "none"; // Hide the error message
}
}
// Function to validate the entire form before submission
function validateForm() {
// Validate email field
var email = document.getElementById("email").value;
var emailError = document.getElementById("email-error");
var emailPattern = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
if (!emailPattern.test(email)) {
emailError.style.display = "inline"; // Show error message
return false; // Prevent form submission
}
// Ensure that retype email matches the email field
var retypeEmail = document.getElementById("retype-email").value;
if (email !== retypeEmail) {
alert("Email and Re-type Email must match.");
return false;
}
return true;
}
|