youll need to follow us and come back to same page for connection
// Place this script in your page settings or using a plugin that allows custom scripts
document.addEventListener("DOMContentLoaded", function() {
if (localStorage.getItem('socialFollowed') === 'true') {
document.getElementById('wifi-credentials').style.display = 'block';
}
document.getElementById('follow-button').addEventListener('click', function() {
localStorage.setItem('socialFollowed', 'true');
});
});