Created
November 21, 2022 17:03
-
-
Save dmitrymomot/cb34b7c3bc09c7df5ed61cae1baa972f to your computer and use it in GitHub Desktop.
Revisions
-
dmitrymomot created this gist
Nov 21, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Redirect</title> <script type="text/javascript"> function redirectionJavascript() { window.location.href = "/"; } </script> </head> <body onLoad="setTimeout('redirectionJavascript()', 10000)"> You will be redirected to the login page in 10 seconds. </body> </html>