Created
November 21, 2022 17:03
-
-
Save dmitrymomot/cb34b7c3bc09c7df5ed61cae1baa972f to your computer and use it in GitHub Desktop.
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 characters
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment