summaryrefslogtreecommitdiff
path: root/internal/web/signup.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/web/signup.go')
-rw-r--r--internal/web/signup.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/internal/web/signup.go b/internal/web/signup.go
index a943f3680..64b9f4e2d 100644
--- a/internal/web/signup.go
+++ b/internal/web/signup.go
@@ -126,9 +126,10 @@ func (m *Module) signupPOSTHandler(c *gin.Context) {
// Serve a page informing the
// user that they've signed up.
page := apiutil.WebPage{
- Template: "signed-up.tmpl",
- Instance: instance,
- OGMeta: apiutil.OGBase(instance),
+ Template: "signed-up.tmpl",
+ Instance: instance,
+ Stylesheets: []string{instanceCustomCSSPath},
+ OGMeta: apiutil.OGBase(instance),
Extra: map[string]any{
"email": user.UnconfirmedEmail,
"username": user.Account.Username,