function toggleInput() {
var inputField = document.getElementById("textField");
var button = document.getElementById("submitButton");
var link = document.getElementById("successLink");
var inputValue = document.getElementById("inputText").value;
var correctValue = "SFL@123$"; // Variable value to compare
// Check if the input value matches the correct value
if (inputValue === correctValue) {
inputField.style.display = "none"; // Hide the input field
button.style.display = "none"; // Hide the button
link.style.display = "block"; // Show the link
} else {
inputField.style.display = "block"; // Show the input field
button.style.display = "block"; // Show the button
link.style.display = "none"; // Hide the link
}
}