Update boot.html

This commit is contained in:
DJObleezy 2025-03-30 15:49:30 -07:00 committed by GitHub
parent 58cbc2a02c
commit c4d399748d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -577,10 +577,16 @@
} }
} }
// Skip button: immediately redirect // Skip button: reveal configuration form only
skipButton.addEventListener('click', function () { skipButton.addEventListener('click', function () {
clearTimeout(timeoutId); clearTimeout(timeoutId);
redirectToDashboard(); // Optionally, clear boot messages or hide elements related to boot sequence
outputElement.innerHTML = "";
// Hide any loading or prompt messages
loadingMessage.style.display = 'none';
promptContainer.style.display = 'none';
// Show the configuration form
configForm.style.display = 'block';
}); });
// Start the typing animation (hides loading message) // Start the typing animation (hides loading message)