13 lines
331 B
HTML
13 lines
331 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Redirecting to Homepage</title>
|
|
<link rel="stylesheet" type="text/css" href="/css/swagg.css">
|
|
</head>
|
|
<body>
|
|
<h1>Redirecting to Homepage</h1>
|
|
<p>Click <a href="/home">here</a> if not redirected automagically.</p>
|
|
<script>window.location.replace("/home");</script>
|
|
</body>
|
|
</html>
|