Calculator Tools Calculator Tools
Create

Program Lock

Sep 13, 2023

About this app

Lock other programs on your computer

[ { "search": "// Function to lock other programs", "replace": "// Function to lock other programs\nfunction unlockPrograms() {\n var password = prompt('Enter the password to unlock the program:');\n if (password === 'freesyria') {\n alert('Program unlocked!');\n // Add your code here to unlock the program\n } else {\n alert('Incorrect password. Please try again.');\n }\n}\n" }, { "search": "// Event listener for lock button click", "replace": "// Event listener for lock button click\n document.getElementById('lock-btn').addEventListener('click', unlockPrograms);\n" } ]

Related apps

Put this on your site

Source

                    [
{
"search": "// Function to lock other programs",
"replace": "// Function to lock other programs\nfunction unlockPrograms() {\n var password = prompt('Enter the password to unlock the program:');\n if (password === 'freesyria') {\n alert('Program unlocked!');\n // Add your code here to unlock the program\n } else {\n alert('Incorrect password. Please try again.');\n }\n}\n"
},
{
"search": "// Event listener for lock button click",
"replace": "// Event listener for lock button click\n document.getElementById('lock-btn').addEventListener('click', unlockPrograms);\n"
}
]