diff --git a/backend/templates/auth_signup.templ b/backend/templates/auth_signup.templ
index 05e8aec..c53ed17 100644
--- a/backend/templates/auth_signup.templ
+++ b/backend/templates/auth_signup.templ
@@ -2,25 +2,26 @@ package templates
import "backend/internal/web/ui"
-// SignupPage renders the full /signup page wrapped in the base Layout.
+// SignupPage renders the full /signup page wrapped in AuthLayout.
// It delegates the form section to SignupFormFragment so HTMX can swap just the
// form on validation errors without re-rendering the surrounding shell.
templ SignupPage(form SignupForm, errs SignupErrors, csrfToken string, providers AuthProviderButtons) {
- @Layout("Sign up", nil, csrfToken) {
-
-}
-
// SignupFormFragment is the bare form used for HTMX swaps.
// hx-post targets this component itself so the form can be replaced inline
// on validation failure (D-19, D-25).
@@ -33,37 +34,37 @@ templ SignupFormFragment(form SignupForm, errs SignupErrors, csrfToken string) {
hx-post="/signup"
hx-target="#signup-form"
hx-swap="outerHTML"
- class="space-y-5"
+ class="login-form"
>
@ui.CSRFField(csrfToken)
@GeneralError(errs.General)
-