From db5f3d51d9f81b643f9c864c44d0dcc99df49963 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 7 Mar 2026 21:18:17 +0000 Subject: [PATCH] fix(ui): make pricing page CTAs link to /signup when local signup is enabled All four CTA anchor elements on pricing.html were hardcoded to /login. They now use /signup when allow_signup is True (MULTI_USER_ENABLED and ALLOW_LOCAL_SIGNUP both true), falling back to /login when signup is disabled. Bottom CTA button text also updates accordingly. Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- frontend/templates/pricing.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/templates/pricing.html b/frontend/templates/pricing.html index b6cae447..e452acff 100644 --- a/frontend/templates/pricing.html +++ b/frontend/templates/pricing.html @@ -114,7 +114,7 @@
Start with the free tier — no credit card required.
- - Create your free account + {% if allow_signup %}Create your free account{% else %}Sign in{% endif %}