From 83cd353b01660f34d6fd894d15a27fb1b3aeab4c Mon Sep 17 00:00:00 2001 From: Connor Thomson Date: Sun, 20 Sep 2026 21:09:44 -0700 Subject: Fix redirect issue --- signup/signup.php | 2 +- signup/verify/verify.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'signup') diff --git a/signup/signup.php b/signup/signup.php index 7648adf..a70ad9c 100755 --- a/signup/signup.php +++ b/signup/signup.php @@ -62,7 +62,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { $subject = "GNUfault.org Verification Code"; if (send_mail($email, $subject, (string)$code)) { - header("Location: verify"); + header("Location: verify/"); } else { echo "Failed to send"; exit; diff --git a/signup/verify/verify.php b/signup/verify/verify.php index 9e22132..a5e43af 100755 --- a/signup/verify/verify.php +++ b/signup/verify/verify.php @@ -74,7 +74,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { exit; } - header("Location: /signin"); + header("Location: /signin/"); } ?> -- cgit v1.2.3