N°3253 setup redirection : update to be more accessible

Was only doing a redirection using JS
Now we also have a message with a link, plus a meta refresh.

JS redirection was kept as this is quicker than meta refresh (message isn't visible, whereas it is when having meta refresh only)
This commit is contained in:
Pierre Goiffon
2021-02-02 18:16:04 +01:00
parent f1d047becf
commit ecd282faf1

View File

@@ -32,12 +32,14 @@ echo <<<HTML
<!DOCTYPE html>
<html>
<head>
<title>iTop setup - redirection page</title>
<title>iTop setup - Checking minimum requirements</title>
<meta http-equiv="refresh" content="0; url=wizard.php">
<script>
document.location = "wizard.php";
</script>
</head>
<body>
<p>Redirecting to <a href="wizard.php">setup launch page</a>...</p>
</body>
</html>
HTML;