redirect login attempts to status page

This commit is contained in:
2026-01-28 13:30:27 +00:00
parent c8f43710d3
commit b790facf56
2 changed files with 13 additions and 11 deletions
+3 -3
View File
@@ -236,10 +236,10 @@ export async function getServerSideProps(context) {
};
}
if (process.env.SHOWLOGIN == false) {
if (process.env.SHOWLOGIN === "false" || process.env.SHOWLOGIN === false) {
return {
redirect: {
destination: "/404",
destination: "/status",
permanent: false,
},
};
@@ -250,7 +250,7 @@ export async function getServerSideProps(context) {
"\n//////////////////////\n",
"Sign in callbackurl: " + context.req.headers.host,
context.locale,
csrfToken + "\n//////////////////////\n"
csrfToken + "\n//////////////////////\n",
);
let formURL = context.req.headers.host;
console.log("formUrl:", formURL);