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> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>iTop setup - redirection page</title> <title>iTop setup - Checking minimum requirements</title>
<meta http-equiv="refresh" content="0; url=wizard.php">
<script> <script>
document.location = "wizard.php"; document.location = "wizard.php";
</script> </script>
</head> </head>
<body> <body>
<p>Redirecting to <a href="wizard.php">setup launch page</a>...</p>
</body> </body>
</html> </html>
HTML; HTML;