19 lines
349 B
HTML
19 lines
349 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="refresh" content="0; url={{ url }}">
|
|
<title>Redirecting...</title>
|
|
|
|
<style>
|
|
body {
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>A fairy is teleporting you to <a href="{{ url }}">{{ url }}</a>...!</p>
|
|
</body>
|
|
</html>
|