summaryrefslogtreecommitdiff
path: root/src/components/SignupBody.astro
diff options
context:
space:
mode:
authorManurbhav Arya2024-06-24 16:10:10 +0530
committerManurbhav Arya2024-06-24 16:10:10 +0530
commitcaa72207d70ad8e965ef0b167b98f8b580820132 (patch)
tree3fbfd67c85cc531db6744770dde2e8a4975e004f /src/components/SignupBody.astro
parent0451fd96a5aa22410560a8e6ab77242d3ee0654a (diff)
downloadIotJS-Astro-main.tar.gz
IotJS-Astro-main.tar.bz2
IotJS-Astro-main.zip
Added intermediate route for results pageHEADmain
Diffstat (limited to 'src/components/SignupBody.astro')
-rw-r--r--src/components/SignupBody.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SignupBody.astro b/src/components/SignupBody.astro
index 70b12df..f98afb9 100644
--- a/src/components/SignupBody.astro
+++ b/src/components/SignupBody.astro
@@ -47,7 +47,7 @@
});
// Redirect to admin page if successful
if (response.ok) {
- window.location.href = "/admin";
+ window.location.href = "/announce";
} else {
errorMessageElement.innerText = (await response.json()).error;
}