Add simple button to try again for now

This commit is contained in:
Tibo De Peuter 2023-08-04 15:46:53 +02:00
parent 48641bdef1
commit c020aacdce

View file

@ -48,13 +48,23 @@ function createCheckButton(destination) {
check(destination, container, dot, message, button);
}
function createTryAgainButton(destination) {
const button = document.createElement('button');
button.textContent = 'Try Again';
button.onclick = function () {
window.location.href = destination;
}
document.getElementById('checkContainer').appendChild(button);
}
function checkDestination() {
const url = window.location.search;
const searchParams = new URLSearchParams(url);
const destination = searchParams.get('destination');
if (destination) {
createCheckButton(destination);
createTryAgainButton(destination);
}
}