const btCodes = {
"3349": "https://sunflower-spinach-fdl2.squarespace.com/config/pages"
};
document.getElementById("bt-go").addEventListener("click", function() {
const input = document.getElementById("bt-input").value.trim();
const profileUrl = btCodes[input];
const errorMsg = document.getElementById("bt-error");
if(profileUrl){
window.location.href = profileUrl; // redirect to profile
} else {
errorMsg.style.display = "block";
errorMsg.textContent = "Invalid code. Please check and retry.";
}
});