36 lines
923 B
HTML
36 lines
923 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Login - janishutz.com Account SDK</title>
|
|
<style>
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
color: white;
|
|
background-color: #202020;
|
|
font-size: 200%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Redirecting to login</h1>
|
|
<p>Please be patient...</p>
|
|
|
|
<script>
|
|
location.href = '[[ redirect ]]'
|
|
</script>
|
|
</body>
|
|
</html>
|