feat: first somewhat working version

This commit is contained in:
2026-09-10 11:42:05 +02:00
parent 57e063eacb
commit e12694bf0a
13 changed files with 3968 additions and 1 deletions
+35
View File
@@ -0,0 +1,35 @@
<!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>