From 3ceedaa8184e12027ebe0238495d4916a6d4421b Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Mon, 26 Jan 2026 13:32:23 -0800 Subject: [PATCH] Show magic OTP 123456 on dev signup page Co-Authored-By: Claude Opus 4.5 --- portal/signup.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portal/signup.html b/portal/signup.html index 8da0902..f6feb0b 100644 --- a/portal/signup.html +++ b/portal/signup.html @@ -617,9 +617,9 @@ const masked = `(${this.phone.substring(0, 3)}) ***-${this.phone.substring(6)}`; document.getElementById('maskedPhone').textContent = masked; - // Show DEV_OTP if available (local dev only) + // Show magic OTP hint on dev (always 123456) if (this.devOTP) { - this.showSuccess('otpSuccess', `DEV CODE: ${this.devOTP}`); + this.showSuccess('otpSuccess', `DEV CODE: 123456`); } // Reset and show OTP step