feat(portal): Redirect root URL to login page

portal.secubox.in/ now redirects to /login.html for SSO flow

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
CyberMind-FR 2026-02-21 13:36:33 +01:00
parent 20e4680d1a
commit d3ab23b07d

View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0;url=/login.html">
<title>SecuBox Portal</title>
</head>
<body>
<script>window.location.href = "/login.html";</script>
<p>Redirecting to <a href="/login.html">login</a>...</p>
</body>
</html>